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.
18 lines
452 B
18 lines
452 B
using ErsatzTV.Core.Domain; |
|
using ErsatzTV.Core.Domain.Filler; |
|
|
|
namespace ErsatzTV.Application.Filler; |
|
|
|
public record FillerPresetViewModel( |
|
int Id, |
|
string Name, |
|
FillerKind FillerKind, |
|
FillerMode FillerMode, |
|
TimeSpan? Duration, |
|
int? Count, |
|
int? PadToNearestMinute, |
|
ProgramScheduleItemCollectionType CollectionType, |
|
int? CollectionId, |
|
int? MediaItemId, |
|
int? MultiCollectionId, |
|
int? SmartCollectionId);
|
|
|