package xyz.stream.api.entity;

import com.google.gson.annotations.SerializedName;

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

    @SerializedName("download")
    private Boolean download;

    @SerializedName("support")
    private Boolean support;

    public Boolean getDownload() {
        return this.download;
    }

    public Boolean getSupport() {
        return this.support;
    }

    public void setDownload(Boolean bool) {
        this.download = bool;
    }

    public void setSupport(Boolean bool) {
        this.support = bool;
    }
}
