GetServerInfo, GetServerList and GetServerStatus done

This commit is contained in:
Brett Hewitson 2021-12-04 21:47:16 +10:00
parent d526a3f457
commit 824daed0d1
27 changed files with 484 additions and 91 deletions

View file

@ -1,7 +1,7 @@
using ServerManagerTool.Discord.Enums;
using ServerManagerTool.DiscordBot.Enums;
using System.Collections.Generic;
namespace ServerManagerTool.Discord.Delegates
namespace ServerManagerTool.DiscordBot.Delegates
{
public delegate IList<string> HandleCommandDelegate(CommandType commandType, string serverId, string channelId, string profileId);
}

View file

@ -0,0 +1,4 @@
namespace ServerManagerTool.DiscordBot.Delegates
{
public delegate string HandleTranslationDelegate(string translationKey);
}