Table of Contents

Class Warning

Namespace
Refitter.Core
Assembly
Refitter.Core.dll

Represents a user-facing configuration warning message.

public record Warning : IEquatable<Warning>
Inheritance
Warning
Implements
Inherited Members

Constructors

Warning(string, string)

Represents a user-facing configuration warning message.

public Warning(string Title, string Description)

Parameters

Title string

The short title of the warning.

Description string

The extended description of the warning.

Properties

Description

The extended description of the warning.

public string Description { get; init; }

Property Value

string

Title

The short title of the warning.

public string Title { get; init; }

Property Value

string