2021-11-27 02:10:56 +00:00
|
|
|
namespace PluralKit.Bot;
|
|
|
|
|
|
|
|
public class Command
|
2019-10-05 05:41:00 +00:00
|
|
|
{
|
2021-11-27 02:10:56 +00:00
|
|
|
public Command(string key, string usage, string description)
|
2019-10-05 05:41:00 +00:00
|
|
|
{
|
2021-11-27 02:10:56 +00:00
|
|
|
Key = key;
|
|
|
|
Usage = usage;
|
|
|
|
Description = description;
|
2019-10-05 05:41:00 +00:00
|
|
|
}
|
2021-11-27 02:10:56 +00:00
|
|
|
|
|
|
|
public string Key { get; }
|
|
|
|
public string Usage { get; }
|
|
|
|
public string Description { get; }
|
2019-10-05 05:41:00 +00:00
|
|
|
}
|