Files
nadekobot/src/NadekoBot/_common/CommandData.cs
2024-04-27 16:03:48 +00: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; }
}