Files
YandexMusic/YandexMusic.API/Models/Common/YSubscription.cs
2026-04-10 15:05:32 +03:00

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