using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations.Schema; namespace GPW.CORE.Data.DbModels { // // This is here so CodeMaid doesn't reorganize this document // [Table("AnagKeyValue")] public partial class AnagKeyValueModel { public string NomeVar { get; set; } = null!; public int? ValInt { get; set; } public double? ValFloat { get; set; } public string? ValString { get; set; } public string? Descrizione { get; set; } } }