Class CommandHelp
- Namespace
- McServerLauncher.Models
- Assembly
- McServerLauncher.dll
A server command with its syntax and explanation, for the console help.
public record CommandHelp : IEquatable<CommandHelp>
- Inheritance
-
CommandHelp
- Implements
- Inherited Members
Constructors
CommandHelp(string, string, string)
A server command with its syntax and explanation, for the console help.
public CommandHelp(string Insert, string Title, string Description)
Parameters
InsertstringText placed in the box when chosen (ready to complete the arguments).
TitlestringThe command syntax that is displayed.
DescriptionstringWhat the command does.
Properties
Description
What the command does.
public string Description { get; init; }
Property Value
Insert
Text placed in the box when chosen (ready to complete the arguments).
public string Insert { get; init; }
Property Value
Title
The command syntax that is displayed.
public string Title { get; init; }