package androidx.work.impl.model;
/* loaded from: classes.dex */
public class SystemIdInfo {
    public final int systemId;
    public final String workSpecId;

    public SystemIdInfo(String workSpecId, int systemId) {
        this.workSpecId = workSpecId;
        this.systemId = systemId;
    }

    public boolean equals(Object o) {
        if (this == o) {
            return true;
        }
        if (o instanceof SystemIdInfo) {
            SystemIdInfo systemIdInfo = (SystemIdInfo) o;
            if (this.systemId != systemIdInfo.systemId) {
                return false;
            }
            return this.workSpecId.equals(systemIdInfo.workSpecId);
        }
        return false;
    }

    public int hashCode() {
        return (this.workSpecId.hashCode() * 31) + this.systemId;
    }
}
