package xyz.stream.api.entity;

/* JADX INFO: loaded from: classes3.dex */
public class MatchChannelEntity {
    private String icon;

    /* JADX INFO: renamed from: id, reason: collision with root package name */
    private int f35853id;
    private String name;

    public MatchChannelEntity(int i10, String str, String str2) {
        this.f35853id = i10;
        this.name = str;
        this.icon = str2;
    }

    public String getIcon() {
        return this.icon;
    }

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

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

    public void setIcon(String str) {
        this.icon = str;
    }

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

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