using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations.Schema; using System.ComponentModel.DataAnnotations; using System.Linq; using System.Text; using System.Threading.Tasks; namespace WebDoorCreator.Data.DbModels { // // This is here so CodeMaid doesn't reorganize this document // [Table("Config")] public partial class ConfigModel { [Key] public string chiave { get; set; } = null!; public string valore { get; set; } = ""; public string valoreStd { get; set; } = ""; public string note { get; set; } = ""; } }