Files
nadekobot/src/NadekoBot/Common/CommandData.cs
2021-12-29 06:07:16 +01:00

9 lines
191 B
C#

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