NadekoBot/NadekoBot.Core/Common/CommandData.cs
2017-09-30 00:46:33 +02:00

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; }
}
}