Добавлен пункт "мои плейлисты"
This commit is contained in:
@@ -13,4 +13,5 @@ public enum TrackSearchType
|
||||
Album,
|
||||
Playlist,
|
||||
Track,
|
||||
MyPlaylists,
|
||||
}
|
||||
|
||||
@@ -17,6 +17,18 @@ public class YandexSearchResult
|
||||
[JsonPropertyName("playlists")]
|
||||
public List<YandexPlaylist>? Playlists { get; set; } = null;
|
||||
|
||||
/// <summary>
|
||||
/// Персональные плейлисты.
|
||||
/// </summary>
|
||||
[JsonPropertyName("personalPlaylists")]
|
||||
public List<YandexPlaylist>? PersonalPlaylists { get; set; } = null;
|
||||
|
||||
/// <summary>
|
||||
/// Плейлисты, которые понравились.
|
||||
/// </summary>
|
||||
[JsonPropertyName("likedPlaylists")]
|
||||
public List<YandexPlaylist>? LikedPlaylists { get; set; } = null;
|
||||
|
||||
/// <summary>
|
||||
/// Найденные исполнители.
|
||||
/// </summary>
|
||||
|
||||
Reference in New Issue
Block a user