PluralKit/PluralKit.Bot/CommandSystem/Command.cs
2019-10-05 07:41:00 +02:00

16 lines
380 B
C#

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;
}
}
}