mirror of
https://git.oceanpay.cc/danial/kami_itunes_june.git
synced 2025-12-18 22:31:24 +00:00
97 lines
1.7 KiB
C#
97 lines
1.7 KiB
C#
namespace AppleBatch_June.Model
|
|
{
|
|
public class DevicesInfo
|
|
{
|
|
public class Dateformatter
|
|
{
|
|
public string locale { get; set; }
|
|
|
|
public Decimalstyle decimalStyle { get; set; }
|
|
|
|
public string resolverStyle { get; set; }
|
|
|
|
public Zone zone { get; set; }
|
|
|
|
public Chronology chronology { get; set; }
|
|
}
|
|
|
|
public class Decimalstyle
|
|
{
|
|
public string zeroDigit { get; set; }
|
|
|
|
public string positiveSign { get; set; }
|
|
|
|
public string negativeSign { get; set; }
|
|
|
|
public string decimalSeparator { get; set; }
|
|
}
|
|
|
|
public class Zone
|
|
{
|
|
public int totalSeconds { get; set; }
|
|
|
|
public string id { get; set; }
|
|
|
|
public Rules rules { get; set; }
|
|
}
|
|
|
|
public class Rules
|
|
{
|
|
public bool fixedOffset { get; set; }
|
|
|
|
public object[] transitions { get; set; }
|
|
|
|
public object[] transitionRules { get; set; }
|
|
}
|
|
|
|
public class Chronology
|
|
{
|
|
public string calendarType { get; set; }
|
|
|
|
public string id { get; set; }
|
|
}
|
|
|
|
public class Timeformatter
|
|
{
|
|
public string locale { get; set; }
|
|
|
|
public Decimalstyle1 decimalStyle { get; set; }
|
|
|
|
public string resolverStyle { get; set; }
|
|
|
|
public Zone1 zone { get; set; }
|
|
}
|
|
|
|
public class Decimalstyle1
|
|
{
|
|
public string zeroDigit { get; set; }
|
|
|
|
public string positiveSign { get; set; }
|
|
|
|
public string negativeSign { get; set; }
|
|
|
|
public string decimalSeparator { get; set; }
|
|
}
|
|
|
|
public class Zone1
|
|
{
|
|
public int totalSeconds { get; set; }
|
|
|
|
public string id { get; set; }
|
|
|
|
public Rules1 rules { get; set; }
|
|
}
|
|
|
|
public class Rules1
|
|
{
|
|
public bool fixedOffset { get; set; }
|
|
|
|
public object[] transitions { get; set; }
|
|
|
|
public object[] transitionRules { get; set; }
|
|
}
|
|
|
|
public bool allowRemoval { get; set; }
|
|
}
|
|
}
|