PluralKit/PluralKit.Bot/CommandSystem/Command.cs

15 lines
308 B
C#
Raw Normal View History

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