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

19 lines
444 B
C#

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