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
BaseTypeGlobalConfigBaseTypeThe data type of the property, or the element type of a list.
IsListboolWheter 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
IsList
Wheter or not the data type represents a list.
public bool IsList { get; init; }