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

14 lines
413 B
C#

namespace YandexMusic.API.Models.Common
{
public class YSubscriptionService
{
public DateTime Expires { get; set; }
public bool Finished { get; set; }
public decimal OrderId { get; set; }
public string ProductId { get; set; }
public YProduct Product { get; set; }
public string Vendor { get; set; }
public string VendorHelpUrl { get; set; }
}
}