Show / Hide Table of Contents

Class ConfigSetting

The ConfigSetting is a set of app configuration variables that should not be impacted by any app deployment other than SQL files to that would change any values as the result of a deployment.

Inheritance
System.Object
ConfigSetting
Namespace: LymeTemplateApi.Models
Assembly: LymeTemplateApi.Models.dll
Syntax
public class ConfigSetting : object

Properties

Description

The description of the Config Setting.

Declaration
public string? Description { get; set; }
Property Value
Type Description
System.Nullable<System.String>

Id

Primary Key

Declaration
public int Id { get; set; }
Property Value
Type Description
System.Int32

Name

The name of the Config Setting.

Declaration
public string Name { get; set; }
Property Value
Type Description
System.String

Value

The value of the Config Setting.

Declaration
public string Value { get; set; }
Property Value
Type Description
System.String
In This Article
Back to top Generated by DocFX