mirror of
https://git.oceanpay.cc/danial/kami_itunes_june.git
synced 2025-12-18 22:31:24 +00:00
50 lines
919 B
C#
50 lines
919 B
C#
namespace AppleBatch_June.Model
|
|
{
|
|
public class SubscriptionModel
|
|
{
|
|
public class Userinfo
|
|
{
|
|
public bool shouldShowSharingMasterToggle { get; set; }
|
|
|
|
public bool isInFamily { get; set; }
|
|
}
|
|
|
|
public class Subscription
|
|
{
|
|
public long expirationTimestamp { get; set; }
|
|
|
|
public Latestplan latestPlan { get; set; }
|
|
|
|
public bool isAutoRenewEnabled { get; set; }
|
|
|
|
public string subscriptionId { get; set; }
|
|
|
|
public string publicationName { get; set; }
|
|
}
|
|
|
|
public class Latestplan
|
|
{
|
|
public string paidPrice { get; set; }
|
|
}
|
|
|
|
public class Coverart
|
|
{
|
|
public int width { get; set; }
|
|
|
|
public string backgroundColor { get; set; }
|
|
|
|
public bool isTemplateUrl { get; set; }
|
|
|
|
public string url { get; set; }
|
|
|
|
public string platform { get; set; }
|
|
|
|
public int height { get; set; }
|
|
}
|
|
|
|
public Subscription[] subscriptions { get; set; }
|
|
|
|
public int status { get; set; }
|
|
}
|
|
}
|