Skip to content

HelpCommand

Machine-readable command descriptor.

public sealed record HelpCommand : IEquatable<HelpCommand>
  • IEquatable<HelpCommand>

Machine-readable command descriptor.

public HelpCommand(string Name, string Description, string Usage)
  • Name (string): Command name.
  • Description (string): Command description.
  • Usage (string): Usage template.

Command description.

public string Description { get; init; }

string

Command name.

public string Name { get; init; }

string

Usage template.

public string Usage { get; init; }

string