Added Discord Bot

This commit is contained in:
Sarah Faey 2022-11-06 19:10:58 +01:00
parent e7a0c9ae68
commit e445b2a181
48 changed files with 1255 additions and 157 deletions

16
DiscordBot/Constants.cs Normal file
View file

@ -0,0 +1,16 @@
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";
}
}
}