using System.Collections.Generic; using ErsatzTV.Core.Domain; namespace ErsatzTV.Core.Scheduling { public record CollectionWithItems( int CollectionId, List MediaItems, bool ScheduleAsGroup, PlaybackOrder PlaybackOrder, bool UseCustomOrder); }