* rename collection type * split collections into separate pages * add rerun collection types, migration, editor * add rerun to classic schedule items * rerun plumbing in classic playout builder * start to implement rerun enumerator * add scheduledAt to enumerator movenext * maintain rerun history in db * fix shuffle * fix rerun allowed playback orders * fix updating rerun collections * update changelog; fix editing * update changelog
24 lines
580 B
C#
24 lines
580 B
C#
using ErsatzTV.Core;
|
|
using ErsatzTV.Core.Domain;
|
|
using ErsatzTV.Core.Domain.Filler;
|
|
|
|
namespace ErsatzTV.Application.Filler;
|
|
|
|
public record CreateFillerPreset(
|
|
string Name,
|
|
FillerKind FillerKind,
|
|
FillerMode FillerMode,
|
|
TimeSpan? Duration,
|
|
int? Count,
|
|
int? PadToNearestMinute,
|
|
bool AllowWatermarks,
|
|
CollectionType CollectionType,
|
|
int? CollectionId,
|
|
int? MediaItemId,
|
|
int? MultiCollectionId,
|
|
int? SmartCollectionId,
|
|
int? PlaylistId,
|
|
string Expression,
|
|
bool UseChaptersAsMediaItems
|
|
) : IRequest<Either<BaseError, Unit>>;
|