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

27 lines
556 B
Java

package o;
import com.google.gson.annotations.SerializedName;
import java.util.List;
import java.util.Objects;
/* loaded from: classes3.dex */
public class FyU {
@SerializedName("occupations")
public List<lFZ> e;
public boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (obj == null || getClass() != obj.getClass()) {
return false;
}
return Objects.equals(this.e, ((FyU) obj).e);
}
public int hashCode() {
return Objects.hash(this.e);
}
}