using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; namespace LiMan.DbSync.DbModels { // // This is here so CodeMaid doesn't reorganize this document // [Table("Config")] public partial class ConfigModel { #region Public Properties [Key, Column("chiave")] public string Chiave { get; set; } = ""; [Column("valore")] public string Valore { get; set; } = ""; [Column("valoreStd")] public string ValoreStd { get; set; } = ""; [Column("note")] public string Note { get; set; } = ""; #endregion Public Properties } }