mirror of https://github.com/ErsatzTV/ErsatzTV.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
533 B
21 lines
533 B
using ErsatzTV.Core; |
|
using ErsatzTV.Core.Domain; |
|
using ErsatzTV.Core.Domain.Filler; |
|
|
|
namespace ErsatzTV.Application.Filler; |
|
|
|
public record UpdateFillerPreset( |
|
int Id, |
|
string Name, |
|
FillerKind FillerKind, |
|
FillerMode FillerMode, |
|
TimeSpan? Duration, |
|
int? Count, |
|
int? PadToNearestMinute, |
|
bool AllowWatermarks, |
|
ProgramScheduleItemCollectionType CollectionType, |
|
int? CollectionId, |
|
int? MediaItemId, |
|
int? MultiCollectionId, |
|
int? SmartCollectionId |
|
) : IRequest<Either<BaseError, Unit>>;
|
|
|