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

42 lines
1.7 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
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<string> Countries { get; set; }
public YArtistCounts Counts { get; set; }
[JsonConverter(typeof(YCoverConverter))]
public YCover Cover { get; set; }
public List<string> DbAliases { get; set; }
#warning Непонятная коллекция с содержимым разных типов
public List<object> Decomposed { get; set; }
public YDerivedColors DerivedColors { get; set; }
public YDescription Description { get; set; }
public YDeprecation Deprecation { get; set; }
public List<string> Disclaimers { get; set; }
public string EndDate { get; set; }
public string EnWikipediaLink { get; set; }
public List<YExtraAction> ExtraActions { get; set; }
public List<string> Genres { get; set; }
public string Id { get; set; }
public string InitDate { get; set; }
public int LikesCount { get; set; }
public List<YLink> 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; }
}
}