mirror of
https://github.com/Tribufu/ServerManagers
synced 2026-08-07 11:49:03 +00:00
7 lines
262 B
C#
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);
|
|
}
|