12 lines
273 B
C#
12 lines
273 B
C#
using ErsatzTV.Core.Domain;
|
|
|
|
namespace ErsatzTV.Core.Interfaces.Scheduling;
|
|
|
|
public interface IMediaCollectionEnumerator
|
|
{
|
|
CollectionEnumeratorState State { get; }
|
|
Option<MediaItem> Current { get; }
|
|
void MoveNext();
|
|
Option<MediaItem> Peek(int offset);
|
|
}
|