PluralKit/PluralKit.Bot/CommandSystem/CommandGroup.cs

16 lines
359 B
C#
Raw Normal View History

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