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

20 lines
483 B
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.
namespace YandexMusic.API.Models.Ynison
{
public class YYnisonPlayableItem
{
public string AlbumIdOptional { get; set; }
public string CoverUrlOptional { get; set; }
#warning нужен enum
public string From { get; set; }
public string PlayableId { get; set; }
public YYnisonPlayableItemType PlayableType { get; set; }
public string Title { get; set; }
public YYnisonTrackInfo TrackInfo { get; set; }
}
}