PluralKit/PluralKit.Bot/CommandSystem/Command.cs
2021-08-27 11:03:47 -04:00

16 lines
358 B
C#

namespace PluralKit.Bot
{
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;
}
}
}