mirror of
https://github.com/tribufu/ServerManagers
synced 2026-05-06 15:17:34 +00:00
8 lines
324 B
C#
8 lines
324 B
C#
using ServerManagerTool.DiscordBot.Enums;
|
|
using System.Collections.Generic;
|
|
using System.Threading;
|
|
|
|
namespace ServerManagerTool.DiscordBot.Delegates
|
|
{
|
|
public delegate IList<string> HandleCommandDelegate(CommandType commandType, string serverId, string channelId, string profileIdOrAlias, CancellationToken token);
|
|
}
|