Files
MoonPro.net/MP/Models/AnagKeyValue.cs
T
2016-12-20 12:17:32 +01:00

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; }
}
}