using System.Collections.Generic; namespace PluralKit.Bot.CommandSystem { public class CommandGroup { public string Key { get; } public string Description { get; } public ICollection Children { get; } public CommandGroup(string key, string description, ICollection children) { Key = key; Description = description; Children = children; } } }