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

14 lines
424 B
C#

namespace YandexMusic.API.Models.Common
{
public class YVinyl
{
public List<string> ArtistIds { get; set; }
public string Media { get; set; }
public string OfferId { get; set; }
public string Picture { get; set; }
public decimal Price { get; set; }
public string Title { get; set; }
public string Url { get; set; }
public int Year { get; set; }
}
}