Files
ersatztv/ErsatzTV.Application/ProgramSchedules/Commands/IProgramScheduleItemRequest.cs
T
2021-02-08 21:13:53 -06:00

16 lines
399 B
C#

using System;
using ErsatzTV.Core.Domain;
namespace ErsatzTV.Application.ProgramSchedules.Commands
{
public interface IProgramScheduleItemRequest
{
TimeSpan? StartTime { get; }
int MediaCollectionId { get; }
PlayoutMode PlayoutMode { get; }
int? MultipleCount { get; }
TimeSpan? PlayoutDuration { get; }
bool? OfflineTail { get; }
}
}