NadekoBot/NadekoBot.Core/Modules/Gambling/Common/AnimalRacing/RaceOptions.cs

10 lines
237 B
C#

using CommandLine;
namespace NadekoBot.Core.Modules.Gambling.Common.AnimalRacing
{
public class RaceOptions
{
[Option("start-delay", Default = 20, Required = false)]
public int StartDelay { get; set; }
}
}