Files
ersatztv/ErsatzTV.Core/Domain/CollectionEnumeratorState.cs
T

9 lines
234 B
C#

namespace ErsatzTV.Core.Domain;
public class CollectionEnumeratorState
{
public int Seed { get; set; }
public int Index { get; set; }
public CollectionEnumeratorState Clone() => new() { Seed = Seed, Index = Index };
}