11 lines
275 B
C#
11 lines
275 B
C#
using PlaylistShared.Shared.DTO;
|
|
|
|
namespace PlaylistShared.Shared.SharedPlaylist;
|
|
|
|
public class YandexPlaylistData
|
|
{
|
|
public string Title { get; set; } = "";
|
|
public string Description { get; set; } = "";
|
|
public List<YandexTrack> Tracks { get; set; } = new();
|
|
}
|