Table of Contents

Class ConfigurationEntry

Namespace
GastroSky.Models
Assembly
GastroSky.Models.dll

GastroSky configuration table.

[Table("Configuration")]
[Index("Key", new string[] { }, IsUnique = true)]
public class ConfigurationEntry
Inheritance
ConfigurationEntry
Inherited Members

Properties

Id

Unique configuration entry ID (DB primary key).

[Key]
public long Id { get; set; }

Property Value

long

Key

IConfiguration lookup key. Use the : (colon character) as separator for nested sections.

public required string Key { get; set; }

Property Value

string

Value

Configuration entry string value.

public required string Value { get; set; }

Property Value

string