35 lines
734 B
Java
35 lines
734 B
Java
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;
|
|
}
|
|
}
|