Table of Contents

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

Insert string

Text placed in the box when chosen (ready to complete the arguments).

Title string

The command syntax that is displayed.

Description string

What the command does.

Properties

Description

What the command does.

public string Description { get; init; }

Property Value

string

Insert

Text placed in the box when chosen (ready to complete the arguments).

public string Insert { get; init; }

Property Value

string

Title

The command syntax that is displayed.

public string Title { get; init; }

Property Value

string