18 lines
313 B
Java
18 lines
313 B
Java
|
package o;
|
||
|
|
||
|
import com.google.gson.annotations.SerializedName;
|
||
|
import java.util.List;
|
||
|
|
||
|
/* loaded from: classes3.dex */
|
||
|
public class Aid {
|
||
|
|
||
|
@SerializedName("monthly")
|
||
|
public List<String> a;
|
||
|
|
||
|
@SerializedName("weekly")
|
||
|
public List<String> b;
|
||
|
|
||
|
@SerializedName("once")
|
||
|
public List<String> c;
|
||
|
}
|