Lottery/Lottery/IGenerator.cs
onyx-and-iris 7ce6d550ea remove Count propertry from IGenerator
it now only enforced Generate method.
Generate method must now return Numbers type
2024-09-26 21:11:12 +01:00

11 lines
185 B
C#

namespace Lottery
{
/// <summary>
/// All Generators must implement the Generate method
/// </summary>
interface IGenerator
{
Numbers Generate();
}
}