package xyz.stream.api.entity;

/* JADX INFO: loaded from: classes3.dex */
public class DashboardEntity {
    private int backgroundResId;
    private int iconResId;
    private long lastUpdateTime;
    private int sourceType;
    private String title;
    private int totalCount;

    public DashboardEntity(String str, int i10, int i11, int i12, int i13, long j10) {
        this.title = str;
        this.sourceType = i10;
        this.iconResId = i11;
        this.backgroundResId = i12;
        this.totalCount = i13;
        this.lastUpdateTime = j10;
    }

    public int getBackgroundResId() {
        return this.backgroundResId;
    }

    public int getIconResId() {
        return this.iconResId;
    }

    public long getLastUpdateTime() {
        return this.lastUpdateTime;
    }

    public int getSourceType() {
        return this.sourceType;
    }

    public String getTitle() {
        return this.title;
    }

    public int getTotalCount() {
        return this.totalCount;
    }

    public void setBackgroundResId(int i10) {
        this.backgroundResId = i10;
    }

    public void setIconResId(int i10) {
        this.iconResId = i10;
    }

    public void setLastUpdateTime(long j10) {
        this.lastUpdateTime = j10;
    }

    public void setSourceType(int i10) {
        this.sourceType = i10;
    }

    public void setTitle(String str) {
        this.title = str;
    }

    public void setTotalCount(int i10) {
        this.totalCount = i10;
    }
}
