mirror of
https://codeberg.org/Bazsalanszky/Infinity-For-Lemmy.git
synced 2025-04-15 20:15:39 +02:00
38 lines
849 B
Java
38 lines
849 B
Java
package SubscribedUserDatabase;
|
|
|
|
import android.arch.persistence.room.ColumnInfo;
|
|
import android.arch.persistence.room.Entity;
|
|
import android.arch.persistence.room.PrimaryKey;
|
|
import android.support.annotation.NonNull;
|
|
|
|
@Entity(tableName = "subscribed_users")
|
|
public class SubscribedUserData {
|
|
@PrimaryKey
|
|
@NonNull
|
|
@ColumnInfo(name = "id")
|
|
private String id;
|
|
@ColumnInfo(name = "name")
|
|
private String name;
|
|
@ColumnInfo(name = "icon")
|
|
private String iconUrl;
|
|
|
|
public SubscribedUserData(@NonNull String id, String name, String iconUrl) {
|
|
this.id = id;
|
|
this.name = name;
|
|
this.iconUrl = iconUrl;
|
|
}
|
|
|
|
@NonNull
|
|
public String getId() {
|
|
return id;
|
|
}
|
|
|
|
public String getName() {
|
|
return name;
|
|
}
|
|
|
|
public String getIconUrl() {
|
|
return iconUrl;
|
|
}
|
|
}
|