* update dependencies * add playlists * add playlist support to schedules * playout builder (flood) supports playlists * update changelog
9 lines
190 B
C#
9 lines
190 B
C#
namespace ErsatzTV.Core.Domain;
|
|
|
|
public class PlaylistGroup
|
|
{
|
|
public int Id { get; set; }
|
|
public string Name { get; set; }
|
|
public ICollection<Playlist> Playlists { get; set; }
|
|
}
|