Files
YandexMusic/YandexMusic.API/Models/Landing/Entity/Entities/YPersonalPlaylist.cs
2026-04-10 12:12:33 +03:00

14 lines
422 B
C#

using YandexMusic.API.Models.Playlist;
namespace YandexMusic.API.Models.Landing.Entity.Entities
{
public class YPersonalPlaylist
{
public YPlaylist Data { get; set; }
public List<string> Description { get; set; }
public bool Notify { get; set; }
public string PreviewDescription { get; set; }
public bool Ready { get; set; }
public string Type { get; set; }
}
}