TubeLab-App-Android/app/src/main/java/app/fedilab/fedilabtube/client/entities/InstanceReg.java

124 lines
2.7 KiB
Java

package app.fedilab.fedilabtube.client.entities;
public class InstanceReg {
private String domain;
private String version;
private String description;
private String language;
private String category;
private String proxied_thumbnail;
private int total_users;
private int last_week_users;
private boolean selected = false;
private int totalVideos;
private String country;
private int totalInstanceFollowers;
private int totalInstanceFollowing;
public String getDomain() {
return domain;
}
public void setDomain(String domain) {
this.domain = domain;
}
public String getVersion() {
return version;
}
public void setVersion(String version) {
this.version = version;
}
public String getDescription() {
return description;
}
public void setDescription(String description) {
this.description = description;
}
public String getLanguage() {
return language;
}
public void setLanguage(String language) {
this.language = language;
}
public String getCategory() {
return category;
}
public void setCategory(String category) {
this.category = category;
}
public String getProxied_thumbnail() {
return proxied_thumbnail;
}
public void setProxied_thumbnail(String proxied_thumbnail) {
this.proxied_thumbnail = proxied_thumbnail;
}
public int getTotal_users() {
return total_users;
}
public void setTotal_users(int total_users) {
this.total_users = total_users;
}
public int getLast_week_users() {
return last_week_users;
}
public void setLast_week_users(int last_week_users) {
this.last_week_users = last_week_users;
}
public boolean isSelected() {
return selected;
}
public void setSelected(boolean selected) {
this.selected = selected;
}
public int getTotalVideos() {
return totalVideos;
}
public void setTotalVideos(int totalVideos) {
this.totalVideos = totalVideos;
}
public String getCountry() {
return country;
}
public void setCountry(String country) {
this.country = country;
}
public int getTotalInstanceFollowers() {
return totalInstanceFollowers;
}
public void setTotalInstanceFollowers(int totalInstanceFollowers) {
this.totalInstanceFollowers = totalInstanceFollowers;
}
public int getTotalInstanceFollowing() {
return totalInstanceFollowing;
}
public void setTotalInstanceFollowing(int totalInstanceFollowing) {
this.totalInstanceFollowing = totalInstanceFollowing;
}
}