* start to add multi-collections * create multi collection with no items * edit multi collections * fix plex credentials threading issue * add playback order to multi collection items * group episodes outside of shuffled enumerator * move playback order onto each schedule item * fix multi collection grouping * update changelog
21 lines
616 B
C#
21 lines
616 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? MediaItemId { get; }
|
|
PlayoutMode PlayoutMode { get; }
|
|
PlaybackOrder PlaybackOrder { get; }
|
|
int? MultipleCount { get; }
|
|
TimeSpan? PlayoutDuration { get; }
|
|
bool? OfflineTail { get; }
|
|
string CustomTitle { get; }
|
|
}
|
|
}
|