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

53 lines
1.1 KiB
C#

namespace AppleBatch_June.Model
{
public class Securitydevices
{
public class Device
{
public string os { get; set; }
public string osAndVersion { get; set; }
public string listImageLocation { get; set; }
public string listImageLocation2x { get; set; }
public string listImageLocation3x { get; set; }
public string infoboxImageLocation { get; set; }
public string infoboxImageLocation2x { get; set; }
public string infoboxImageLocation3x { get; set; }
public bool currentDevice { get; set; }
public bool hasApplePayCards { get; set; }
public bool hasActiveSurfAccount { get; set; }
public bool removalPending { get; set; }
public string deviceDetailUri { get; set; }
public string deviceDetailHttpMethod { get; set; }
public string deviceClass { get; set; }
public string modelName { get; set; }
public string osVersion { get; set; }
public string name { get; set; }
public string id { get; set; }
}
public Device[] devices { get; set; }
public string hsa2SignedInDevicesLink { get; set; }
public bool suppressChangePasswordLink { get; set; }
}
}