package com.seewo.factoryaging;

import com.google.gson.annotations.SerializedName;

/* JADX INFO: compiled from: ProtocolDefine.kt */
/* JADX INFO: loaded from: classes.dex */
public final class n0 {

    @SerializedName("max")
    private final int a;

    @SerializedName("min")
    private final int b;

    public final int a() {
        return this.a;
    }

    public boolean equals(Object obj) {
        if (this == obj) {
            return true;
        }
        if (!(obj instanceof n0)) {
            return false;
        }
        n0 n0Var = (n0) obj;
        return this.a == n0Var.a && this.b == n0Var.b;
    }

    public int hashCode() {
        return (Integer.hashCode(this.a) * 31) + Integer.hashCode(this.b);
    }

    public String toString() {
        return "VolumeRangeBody(max=" + this.a + ", min=" + this.b + ')';
    }
}
