using System.Text.Json.Serialization; using YandexMusic.API.Models.Common; using YandexMusic.API.Models.Common.Cover; namespace YandexMusic.API.Models.Artist; public class YArtist : YBaseModel { public YButton ActionButton { get; set; } public bool Available { get; set; } public bool Composer { get; set; } public List Countries { get; set; } public YArtistCounts Counts { get; set; } [JsonConverter(typeof(YCoverConverter))] public YCover Cover { get; set; } public List DbAliases { get; set; } #warning Непонятная коллекция с содержимым разных типов public List Decomposed { get; set; } public YDerivedColors DerivedColors { get; set; } public YDescription Description { get; set; } public YDeprecation Deprecation { get; set; } public List Disclaimers { get; set; } public string EndDate { get; set; } public string EnWikipediaLink { get; set; } public List ExtraActions { get; set; } public List Genres { get; set; } public string Id { get; set; } public string InitDate { get; set; } public int LikesCount { get; set; } public List Links { get; set; } public string Name { get; set; } public bool NoPicturesFromSearch { get; set; } public string OgImage { get; set; } public YArtistRatings Ratings { get; set; } public bool TicketsAvailable { get; set; } public DateTime Timestamp { get; set; } public bool Various { get; set; } public string YaMoneyId { get; set; } public bool HasTrailer { get; set; } public YTrailer Trailer { get; set; } }