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("AnagKeyValue")] public partial class AnagKeyValueModel { #region Public Properties [Key, Column("nomeVar")] public string NomeVar { get; set; } = ""; [Column("valInt")] public int? ValInt { get; set; } [Column("valFloat")] public double? ValFloat { get; set; } [Column("valString")] public string ValString { get; set; } = ""; [Column("descrizione")] public string Descrizione { get; set; } = ""; #endregion Public Properties } }