package xyz.stream.api.entity;

/* JADX INFO: loaded from: classes3.dex */
public class MainRecordEntity {

    /* JADX INFO: renamed from: id, reason: collision with root package name */
    private int f35852id;
    private String logo;
    private String name;
    private Integer playTime;
    private Integer totalTime;
    private int type;
    private String updateDate;

    public MainRecordEntity(int i10, String str, String str2, String str3, Integer num, Integer num2, int i11) {
        this.f35852id = i10;
        this.name = str;
        this.logo = str2;
        this.updateDate = str3;
        this.playTime = num;
        this.totalTime = num2;
        this.type = i11;
    }

    public int getId() {
        return this.f35852id;
    }

    public String getLogo() {
        return this.logo;
    }

    public String getName() {
        return this.name;
    }

    public Integer getPlayTime() {
        return this.playTime;
    }

    public Integer getTotalTime() {
        return this.totalTime;
    }

    public int getType() {
        return this.type;
    }

    public String getUpdateDate() {
        return this.updateDate;
    }

    public void setId(int i10) {
        this.f35852id = i10;
    }

    public void setLogo(String str) {
        this.logo = str;
    }

    public void setName(String str) {
        this.name = str;
    }

    public void setPlayTime(Integer num) {
        this.playTime = num;
    }

    public void setTotalTime(Integer num) {
        this.totalTime = num;
    }

    public void setType(int i10) {
        this.type = i10;
    }

    public void setUpdateDate(String str) {
        this.updateDate = str;
    }
}
