PluralKit/PluralKit.Bot/CommandSystem/Command.cs

16 lines
358 B
C#
Raw Normal View History

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