mirror of
https://github.com/onyx-and-iris/Lottery.git
synced 2026-02-26 22:39:10 +00:00
14 lines
223 B
C#
14 lines
223 B
C#
namespace Lottery
|
|
{
|
|
/// <summary>
|
|
/// Represents the kinds of lottery supported
|
|
/// </summary>
|
|
enum KindOfLottery : int
|
|
{
|
|
Lotto,
|
|
Euro,
|
|
SetForLife,
|
|
Thunderball,
|
|
}
|
|
}
|