using ErsatzTV.Core.Domain;
namespace ErsatzTV.Core.Scheduling;
public record CollectionWithItems(
int ShowId,
int ArtistId,
string Key,
List<MediaItem> MediaItems,
bool ScheduleAsGroup,
PlaybackOrder PlaybackOrder,
bool UseCustomOrder);