using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; #nullable disable namespace MP.AppAuth.Models { // // This is here so CodeMaid doesn't reorganize this document // [Table("AnagKeyValue")] public partial class AnagKeyValueModel { #region Public Properties [Key] public string NomeVar { get; set; } public int? ValInt { get; set; } public double? ValFloat { get; set; } public string ValString { get; set; } public string Descrizione { get; set; } #endregion Public Properties } }