what-the-bank/sources/o/C8132dC.java

36 lines
793 B
Java

package o;
import com.google.gson.annotations.SerializedName;
/* renamed from: o.dC, reason: case insensitive filesystem */
/* loaded from: classes3.dex */
public class C8132dC {
@SerializedName("email")
public String b;
public static C8132dC b() {
return new C8132dC();
}
public boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (obj == null || getClass() != obj.getClass()) {
return false;
}
String str = this.b;
String str2 = ((C8132dC) obj).b;
return str != null ? str.equals(str2) : str2 == null;
}
public int hashCode() {
String str = this.b;
if (str != null) {
return str.hashCode();
}
return 0;
}
}