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