Table of Contents

Class GlobalConfigDataType

Namespace
Dassie.Configuration.Global
Assembly
dc.dll

Represents the data type of a global configuration property.

public record GlobalConfigDataType : IEquatable<GlobalConfigDataType>
Inheritance
GlobalConfigDataType
Implements
Inherited Members
Extension Methods

Constructors

GlobalConfigDataType(GlobalConfigBaseType, bool)

Represents the data type of a global configuration property.

public GlobalConfigDataType(GlobalConfigBaseType BaseType, bool IsList)

Parameters

BaseType GlobalConfigBaseType

The data type of the property, or the element type of a list.

IsList bool

Wheter or not the data type represents a list.

Properties

BaseType

The data type of the property, or the element type of a list.

public GlobalConfigBaseType BaseType { get; init; }

Property Value

GlobalConfigBaseType

IsList

Wheter or not the data type represents a list.

public bool IsList { get; init; }

Property Value

bool