Files
ersatztv/ErsatzTV.Core/Scheduling/CollectionWithItems.cs
T

13 lines
271 B
C#

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);