Files
nadekobot/src/NadekoBot/Common/CommandData.cs

10 lines
200 B
C#

namespace NadekoBot.Common
{
public class CommandData
{
public string Cmd { get; set; }
public string Desc { get; set; }
public string[] Usage { get; set; }
}
}