Files
mapo-core/MP.AppAuth/Models/AnagKeyValue.cs
T
2021-09-18 10:55:24 +02:00

20 lines
450 B
C#

using System;
using System.Collections.Generic;
#nullable disable
namespace MP.AppAuth.Models
{
public partial class AnagKeyValue
{
#region Public Properties
public string Descrizione { get; set; }
public string NomeVar { get; set; }
public double? ValFloat { get; set; }
public int? ValInt { get; set; }
public string ValString { get; set; }
#endregion Public Properties
}
}