33 lines
852 B
C#
33 lines
852 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace LiMan.DbSync.DbModels
|
|
{
|
|
// <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
|
|
}
|
|
} |