Files
kami_itunes_june/AppleBatch_June.Model/AppleChangeItem.cs
2024-07-22 00:43:14 +08:00

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; }
}
}