package xyz.stream.api.entity;

import com.google.gson.annotations.SerializedName;
import java.util.List;
import xyz.stream.download.config.InnerConstant;

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

    /* JADX INFO: renamed from: id, reason: collision with root package name */
    @SerializedName(InnerConstant.Db.f36069id)
    private String f35863id;

    @SerializedName("tag_id")
    private int tagId;

    @SerializedName("tag_title")
    private String tagTitle;
    private List<LiveChannelEntity> videoList;

    public TagLiveEntity(Integer num, String str, List<LiveChannelEntity> list) {
        this.tagId = num.intValue();
        this.tagTitle = str;
        this.videoList = list;
    }

    public String getId() {
        return this.f35863id;
    }

    public int getTagId() {
        return this.tagId;
    }

    public String getTagTitle() {
        return this.tagTitle;
    }

    public List<LiveChannelEntity> getVideoList() {
        return this.videoList;
    }

    public void setId(String str) {
        this.f35863id = str;
    }

    public void setTagId(int i10) {
        this.tagId = i10;
    }

    public void setTagTitle(String str) {
        this.tagTitle = str;
    }

    public void setVideoList(List<LiveChannelEntity> list) {
        this.videoList = list;
    }

    public TagLiveEntity(String str, String str2, List<LiveChannelEntity> list) {
        this.f35863id = str;
        this.tagTitle = str2;
        this.videoList = list;
    }

    public TagLiveEntity() {
    }
}
