27 lines
628 B
C#
27 lines
628 B
C#
namespace MP.Models
|
|
{
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
using System.Data.Entity.Spatial;
|
|
|
|
[Table("AnagKeyValue")]
|
|
public partial class AnagKeyValue
|
|
{
|
|
[Key]
|
|
[StringLength(50)]
|
|
public string nomeVar { get; set; }
|
|
|
|
public int? valInt { get; set; }
|
|
|
|
public double? valFloat { get; set; }
|
|
|
|
[StringLength(250)]
|
|
public string valString { get; set; }
|
|
|
|
[StringLength(250)]
|
|
public string descrizione { get; set; }
|
|
}
|
|
}
|