16 lines
399 B
C#
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; }
|
|
}
|
|
}
|