Skip to content

ReplDocArgument

Argument metadata.

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

ReplDocArgument(string, string, bool, string?)

Section titled “ReplDocArgument(string, string, bool, string?)”

Argument metadata.

public ReplDocArgument(string Name, string Type, bool Required, string? Description)
public string? Description { get; init; }

string

public string Name { get; init; }

string

public bool Required { get; init; }

bool

public string Type { get; init; }

string