Class ConfigEntryInfo
Represents a configuration entry with its section, key, default value, and description.
public record ConfigEntryInfo : IEquatable<ConfigEntryInfo>
- Inheritance
-
ConfigEntryInfo
- Implements
- Inherited Members
- Extension Methods
Constructors
ConfigEntryInfo(string, string, object?, string?)
Represents a configuration entry with its section, key, default value, and description.
public ConfigEntryInfo(string Section, string Key, object? DefaultValue, string? Description)
Parameters
Properties
DefaultValue
public object? DefaultValue { get; init; }
Property Value
Description
public string? Description { get; init; }
Property Value
Key
public string Key { get; init; }
Property Value
Section
public string Section { get; init; }