mirror of
https://git.oceanpay.cc/danial/kami_itunes_june.git
synced 2025-12-18 22:31:24 +00:00
53 lines
1.1 KiB
C#
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; }
|
|
}
|
|
}
|