mirror of
https://github.com/onyx-and-iris/Lottery.git
synced 2025-04-01 19:43:45 +01:00
13 lines
166 B
C#
13 lines
166 B
C#
namespace Lottery
|
|
{
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
interface IGenerator
|
|
{
|
|
int Count { get; }
|
|
|
|
List<int> Generate();
|
|
}
|
|
}
|