mirror of
https://github.com/PluralKit/PluralKit.git
synced 2026-02-04 04:56:49 +00:00
Refactor command system
This commit is contained in:
parent
0ec522ca0a
commit
1988b29fbc
21 changed files with 1353 additions and 882 deletions
16
PluralKit.Bot/CommandSystem/Command.cs
Normal file
16
PluralKit.Bot/CommandSystem/Command.cs
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
namespace PluralKit.Bot.CommandSystem
|
||||
{
|
||||
public class Command
|
||||
{
|
||||
public string Key { get; }
|
||||
public string Usage { get; }
|
||||
public string Description { get; }
|
||||
|
||||
public Command(string key, string usage, string description)
|
||||
{
|
||||
Key = key;
|
||||
Usage = usage;
|
||||
Description = description;
|
||||
}
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue