9 lines
234 B
C#
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 };
|
|
}
|