11 lines
382 B
C#
11 lines
382 B
C#
namespace YandexMusic.API.Models.Common;
|
|
|
|
public class YSubscription
|
|
{
|
|
public List<YSubscriptionService> AutoRenewable { get; set; }
|
|
public bool CanStartTrial { get; set; }
|
|
public bool HadAnySubscription { get; set; }
|
|
public bool McDonalds { get; set; }
|
|
public YPeriod NonAutoRenewable { get; set; }
|
|
public YReminder NonAutoRenewableRemainder { get; set; }
|
|
} |