mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-10 01:08:26 -04:00
10 lines
200 B
C#
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; }
|
|
}
|
|
}
|