* re-namespace * optimize usings * more usings * more of the same * more implicit/global usings * cleanup all usings * minor fixes
12 lines
275 B
C#
12 lines
275 B
C#
using ErsatzTV.Core.Domain;
|
|
|
|
namespace ErsatzTV.Core.Interfaces.Scheduling;
|
|
|
|
public interface IScheduleItemsEnumerator
|
|
{
|
|
CollectionEnumeratorState State { get; }
|
|
ProgramScheduleItem Current { get; }
|
|
void MoveNext();
|
|
ProgramScheduleItem Peek(int offset);
|
|
}
|