23 lines
417 B
Java
23 lines
417 B
Java
package o;
|
|
|
|
import com.google.gson.annotations.SerializedName;
|
|
|
|
/* loaded from: classes3.dex */
|
|
public class Tcy {
|
|
|
|
@SerializedName("maskedCardNo")
|
|
private String a;
|
|
|
|
@SerializedName("cardRefNo")
|
|
private String b;
|
|
|
|
@SerializedName("cardName")
|
|
private String d;
|
|
|
|
public Tcy(String str, String str2, String str3) {
|
|
this.b = str;
|
|
this.d = str2;
|
|
this.a = str3;
|
|
}
|
|
}
|