using System; using System.Collections.Generic; #nullable disable namespace MP.AppAuth { public partial class AnagKeyValue { 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; } } }