Lottery/Lottery/IGenerator.cs
2024-09-26 03:54:20 +01:00

13 lines
166 B
C#

namespace Lottery
{
/// <summary>
///
/// </summary>
interface IGenerator
{
int Count { get; }
List<int> Generate();
}
}