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

35 lines
734 B
Java
Raw Permalink Normal View History

2024-07-27 18:17:47 +07:00
package o;
import com.google.gson.annotations.SerializedName;
import java.util.List;
/* loaded from: classes3.dex */
public class SIY {
@SerializedName("scheduleList")
public List<Kjf> e;
public boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (obj == null || getClass() != obj.getClass()) {
return false;
}
SIY siy = (SIY) obj;
List<Kjf> list = this.e;
if (list != null) {
return list.equals(siy.e);
}
return siy.e == null;
}
public int hashCode() {
List<Kjf> list = this.e;
if (list != null) {
return list.hashCode();
}
return 0;
}
}