Table of Contents

Class ConfigEntryInfo

Namespace
RisingV.Shared.Config
Assembly
RisingV.Shared.dll

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

Section string
Key string
DefaultValue object
Description string

Properties

DefaultValue

public object? DefaultValue { get; init; }

Property Value

object

Description

public string? Description { get; init; }

Property Value

string

Key

public string Key { get; init; }

Property Value

string

Section

public string Section { get; init; }

Property Value

string