Class EnvironmentVariableEntry
- Namespace
- FoundationaLLM.Common.Models.Configuration.Environment
- Assembly
- FoundationaLLM.Common.dll
Represents a single entry in the environment variable catalog.
public class EnvironmentVariableEntry
- Inheritance
-
EnvironmentVariableEntry
- Inherited Members
- Extension Methods
Constructors
EnvironmentVariableEntry(string, string, string?)
Represents a single entry in the environment variable catalog.
public EnvironmentVariableEntry(string name, string description, string? defaultValue = null)
Parameters
Properties
DefaultValue
The default value of the environment variable, if any.
public string? DefaultValue { get; }
Property Value
Description
A description of the environment variable.
public string Description { get; }
Property Value
Name
The name of the environment variable.
public string Name { get; }