Lottery/Lottery/KindOfLottery.cs
onyx-and-iris 72e7728e8f rename UKLotto to Lotto to match the national-lottery website
update the launch size of the app window to match the new layout.
2026-02-26 00:03:07 +00:00

14 lines
223 B
C#

namespace Lottery
{
/// <summary>
/// Represents the kinds of lottery supported
/// </summary>
enum KindOfLottery : int
{
Lotto,
Euro,
SetForLife,
Thunderball,
}
}