* add generate playlist option; add system playlists * fix official lists; sync items to playlist
10 lines
229 B
C#
10 lines
229 B
C#
namespace ErsatzTV.Core.Domain;
|
|
|
|
public class PlaylistGroup
|
|
{
|
|
public int Id { get; set; }
|
|
public string Name { get; set; }
|
|
public bool IsSystem { get; set; }
|
|
public ICollection<Playlist> Playlists { get; set; }
|
|
}
|