* add duration tail options to schedule items editor * add naive filler scheduling * fix duration item length in xmltv * show offline image for unfilled duration tail * fix tests * update changelog * update dependencies
27 lines
891 B
C#
27 lines
891 B
C#
using System;
|
|
using ErsatzTV.Core.Domain;
|
|
|
|
namespace ErsatzTV.Application.ProgramSchedules.Commands
|
|
{
|
|
public interface IProgramScheduleItemRequest
|
|
{
|
|
TimeSpan? StartTime { get; }
|
|
ProgramScheduleItemCollectionType CollectionType { get; }
|
|
int? CollectionId { get; }
|
|
int? MultiCollectionId { get; }
|
|
int? SmartCollectionId { get; }
|
|
int? MediaItemId { get; }
|
|
PlayoutMode PlayoutMode { get; }
|
|
PlaybackOrder PlaybackOrder { get; }
|
|
int? MultipleCount { get; }
|
|
TimeSpan? PlayoutDuration { get; }
|
|
TailMode TailMode { get; }
|
|
ProgramScheduleItemCollectionType TailCollectionType { get; }
|
|
int? TailCollectionId { get; }
|
|
int? TailMultiCollectionId { get; }
|
|
int? TailSmartCollectionId { get; }
|
|
int? TailMediaItemId { get; }
|
|
string CustomTitle { get; }
|
|
}
|
|
}
|