ServerManagers/src/ServerManager.Discord/Delegates/HandleCommandDelegate.cs
Brett Hewitson c5775181b3 Discord Bot Changes
1. Added ServerId to Delegate
2. Change Delegate storage to use DI.
2021-12-04 14:35:07 +10:00

7 lines
262 B
C#

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