Files
YandexMusic/YandexMusic.API/Models/Common/YSubscription.cs
2026-04-10 12:12:33 +03:00

12 lines
420 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; }
}
}