<PackageReference Include="Castle.Windsor" Version="4.1.1" />

ParameterModel

public class ParameterModel
Represents a parameter. Usually the parameter comes from the external world, ie, an external configuration.
public IConfiguration ConfigValue { get; }

Gets the config value.

public string Name { get; }

Gets the name.

public string Value { get; }

Gets the value.

public ParameterModel(string name, string value)

Initializes a new instance of the ParameterModel class.

public ParameterModel(string name, IConfiguration value)

Initializes a new instance of the ParameterModel class.