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

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