CommandArgGroup.description

The description of the group.

Notes: The intended usage of this UDA is to apply it to a group of args at the same time, instead of attaching it onto singular args:

@CommandArgGroup("group1", "Some description")
{
    @CommandPositionalArg...
}
struct CommandArgGroup
string description;

Meta