mirror of
https://github.com/PluralKit/PluralKit.git
synced 2026-02-04 21:16:49 +00:00
16 lines
No EOL
359 B
C#
16 lines
No EOL
359 B
C#
namespace PluralKit.Bot;
|
|
|
|
public class CommandGroup
|
|
{
|
|
public CommandGroup(string key, string description, ICollection<Command> children)
|
|
{
|
|
Key = key;
|
|
Description = description;
|
|
Children = children;
|
|
}
|
|
|
|
public string Key { get; }
|
|
public string Description { get; }
|
|
|
|
public ICollection<Command> Children { get; }
|
|
} |