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

13 lines
378 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; }
}