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