* add schedule setting * it works * fix tests * update readme * rebuild all playouts
13 lines
294 B
C#
13 lines
294 B
C#
using ErsatzTV.Core.Domain;
|
|
using LanguageExt;
|
|
|
|
namespace ErsatzTV.Core.Interfaces.Scheduling;
|
|
|
|
public interface IScheduleItemsEnumerator
|
|
{
|
|
CollectionEnumeratorState State { get; }
|
|
ProgramScheduleItem Current { get; }
|
|
void MoveNext();
|
|
ProgramScheduleItem Peek(int offset);
|
|
}
|