mirror of
https://git.oceanpay.cc/danial/kami_itunes_june.git
synced 2025-12-18 22:31:24 +00:00
38 lines
703 B
C#
38 lines
703 B
C#
namespace AppleBatch_June.Model
|
|
{
|
|
public class AppleChangeItem
|
|
{
|
|
public string newPwd { get; set; }
|
|
|
|
public string newQt1 { get; set; }
|
|
|
|
public string newQt2 { get; set; }
|
|
|
|
public string newQt3 { get; set; }
|
|
|
|
public string newshengri { get; set; }
|
|
|
|
public string newGuojia { get; set; }
|
|
|
|
public PaymentInfo pay { get; set; }
|
|
|
|
public string editAddrs { get; set; }
|
|
|
|
public bool isDeleteDevice { get; set; }
|
|
|
|
public bool isUnlinkFamily { get; set; }
|
|
|
|
public bool isRemoveRescueEmail { get; set; }
|
|
|
|
public string countryCode { get; set; } = "";
|
|
|
|
|
|
public string mode { get; set; } = "";
|
|
|
|
|
|
public bool CreatePin { get; set; }
|
|
|
|
public bool ckShippingAddress { get; set; }
|
|
}
|
|
}
|