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.
25 lines
653 B
25 lines
653 B
using System; |
|
using ErsatzTV.Core; |
|
using ErsatzTV.Core.Domain; |
|
using ErsatzTV.Core.Domain.Filler; |
|
using LanguageExt; |
|
using MediatR; |
|
using Unit = LanguageExt.Unit; |
|
|
|
namespace ErsatzTV.Application.Filler.Commands |
|
{ |
|
public record UpdateFillerPreset( |
|
int Id, |
|
string Name, |
|
FillerKind FillerKind, |
|
FillerMode FillerMode, |
|
TimeSpan? Duration, |
|
int? Count, |
|
int? PadToNearestMinute, |
|
ProgramScheduleItemCollectionType CollectionType, |
|
int? CollectionId, |
|
int? MediaItemId, |
|
int? MultiCollectionId, |
|
int? SmartCollectionId |
|
) : IRequest<Either<BaseError, Unit>>; |
|
}
|
|
|