20 lines
450 B
C#
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
|
|
}
|
|
} |