2021-11-27 02:10:56 +00:00
|
|
|
namespace PluralKit.Bot;
|
2019-10-05 05:41:00 +00:00
|
|
|
|
2021-11-27 02:10:56 +00:00
|
|
|
public class CommandGroup
|
2019-10-05 05:41:00 +00:00
|
|
|
{
|
2021-11-27 02:10:56 +00:00
|
|
|
public CommandGroup(string key, string description, ICollection<Command> children)
|
2019-10-05 05:41:00 +00:00
|
|
|
{
|
2021-11-27 02:10:56 +00:00
|
|
|
Key = key;
|
|
|
|
Description = description;
|
|
|
|
Children = children;
|
|
|
|
}
|
2021-08-27 15:03:47 +00:00
|
|
|
|
2021-11-27 02:10:56 +00:00
|
|
|
public string Key { get; }
|
|
|
|
public string Description { get; }
|
2019-10-05 05:41:00 +00:00
|
|
|
|
2021-11-27 02:10:56 +00:00
|
|
|
public ICollection<Command> Children { get; }
|
2019-10-05 05:41:00 +00:00
|
|
|
}
|