package xyz.stream.utils.entity;

/* JADX INFO: loaded from: classes3.dex */
public class MatchReminderEntity {
    private int categoryId;
    private int channelId;
    private int matchId;
    private String time;

    public MatchReminderEntity(int i10, String str, int i11, int i12) {
        this.matchId = i10;
        this.time = str;
        this.channelId = i11;
        this.categoryId = i12;
    }

    public int getCategoryId() {
        return this.categoryId;
    }

    public int getChannelId() {
        return this.channelId;
    }

    public int getMatchId() {
        return this.matchId;
    }

    public String getTime() {
        return this.time;
    }

    public void setCategoryId(int i10) {
        this.categoryId = i10;
    }

    public void setChannelId(int i10) {
        this.channelId = i10;
    }

    public void setMatchId(int i10) {
        this.matchId = i10;
    }

    public void setTime(String str) {
        this.time = str;
    }
}
