15 lines
308 B
C#
Raw Normal View History

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