13 lines
297 B
C#
13 lines
297 B
C#
using ErsatzTV.Core.Domain;
|
|
using LanguageExt;
|
|
|
|
namespace ErsatzTV.Core.Interfaces.Scheduling
|
|
{
|
|
public interface IMediaCollectionEnumerator
|
|
{
|
|
MediaCollectionEnumeratorState State { get; }
|
|
public Option<MediaItem> Current { get; }
|
|
public void MoveNext();
|
|
}
|
|
}
|