Files
mapo-core/MP.AppAuth/Models/AnagKeyValueModel.cs
T
2024-07-18 19:14:10 +02:00

35 lines
849 B
C#

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