package xyz.stream.utils.entity;

/* JADX INFO: loaded from: classes3.dex */
public class ProgramEntity {
    String backdropPath;
    String description;
    Integer sourceType;
    String title;
    Integer videoId;
    String videoPic;

    public ProgramEntity(Integer num, Integer num2, String str, String str2, String str3, String str4) {
        this.videoId = num;
        this.sourceType = num2;
        this.title = str;
        this.description = str2;
        this.videoPic = str3;
        this.backdropPath = str4;
    }

    public String getBackdropPath() {
        return this.backdropPath;
    }

    public String getDescription() {
        return this.description;
    }

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

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

    public Integer getVideoId() {
        return this.videoId;
    }

    public String getVideoPic() {
        return this.videoPic;
    }

    public void setBackdropPath(String str) {
        this.backdropPath = str;
    }

    public void setDescription(String str) {
        this.description = str;
    }

    public void setSourceType(Integer num) {
        this.sourceType = num;
    }

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

    public void setVideoId(Integer num) {
        this.videoId = num;
    }

    public void setVideoPic(String str) {
        this.videoPic = str;
    }
}
