16 lines
339 B
C#
16 lines
339 B
C#
namespace DiscordBot
|
|
{
|
|
public class Constants
|
|
{
|
|
public class ComponentIds
|
|
{
|
|
public const string SIGN_UP = "su";
|
|
public const string SIGN_OFF = "so";
|
|
}
|
|
|
|
public class SlashCommands
|
|
{
|
|
public const string FIRST_COMMAND = "first-command";
|
|
}
|
|
}
|
|
}
|