9 lines
233 B
C#
9 lines
233 B
C#
namespace PlaylistShared.Shared.Yandex;
|
|
|
|
public class YandexPlaylistData
|
|
{
|
|
public string Title { get; set; } = "";
|
|
public string Description { get; set; } = "";
|
|
public List<YandexTrack> Tracks { get; set; } = new();
|
|
}
|