package xyz.stream.api.entity;

/* JADX INFO: loaded from: classes3.dex */
public class VideoQualityEntity {
    private int videoId;
    private String videoSource;

    public VideoQualityEntity(int i10, String str) {
        this.videoId = i10;
        this.videoSource = str;
    }

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

    public String getVideoSource() {
        return this.videoSource;
    }

    public void setVideoId(int i10) {
        this.videoId = i10;
    }

    public void setVideoSource(String str) {
        this.videoSource = str;
    }
}
