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