PluralKit/PluralKit.Bot/CommandSystem/Command.cs

16 lines
380 B
C#
Raw Normal View History

2019-10-05 05:41:00 +00:00
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;
}
}
}