* add generate playlist option; add system playlists * fix official lists; sync items to playlist
9 lines
218 B
C#
9 lines
218 B
C#
namespace ErsatzTV.ViewModels;
|
|
|
|
public class PlaylistItemsEditViewModel
|
|
{
|
|
public string Name { get; set; }
|
|
public bool IsSystem { get; set; }
|
|
public List<PlaylistItemEditViewModel> Items { get; set; }
|
|
}
|