mirror of
https://github.com/Tribufu/ServerManagers
synced 2026-08-07 19:56:22 +00:00
8 lines
317 B
C#
8 lines
317 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 profileId, CancellationToken token);
|
|
}
|