Class ConfigurationEntry
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
Key
IConfiguration lookup key. Use the : (colon character) as separator for nested sections.
public required string Key { get; set; }
Property Value
Value
Configuration entry string value.
public required string Value { get; set; }