Class Warning
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
TitlestringThe short title of the warning.
DescriptionstringThe extended description of the warning.
Properties
Description
The extended description of the warning.
public string Description { get; init; }
Property Value
Title
The short title of the warning.
public string Title { get; init; }