Files
ersatztv/ErsatzTV.Core/Scheduling/CollectionWithItems.cs
T
Jason DoveandGitHub 545bf1b775 fill with group (#1534)
* use browser's accept-language header

* add fill with group mode to schedule items

* update dependencies

* fixes

* fix tests
2024-01-02 10:18:49 -06:00

12 lines
255 B
C#

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