30 lines
990 B
C#
30 lines
990 B
C#
using System;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
// <Auto-Generated>
|
|
// This is here so CodeMaid doesn't reorganize this document
|
|
// </Auto-Generated>
|
|
namespace MP.Data.DbModels
|
|
{
|
|
[Table("ElencoLotti")]
|
|
public class AnagLottoModel
|
|
{
|
|
[Key, DatabaseGenerated(DatabaseGeneratedOption.Identity)]
|
|
public string Lotto { get; set; }
|
|
public int IdxODL { get; set; }
|
|
public string RifExt { get; set; }
|
|
public string TipoLotto { get; set; }
|
|
public string CodArt { get; set; }
|
|
public string CodStato { get; set; }
|
|
public string Origine { get; set; }
|
|
public DateTime DtCrea { get; set; }
|
|
public string Note { get; set; }
|
|
public decimal QtaOrig { get; set; }
|
|
public int NumUdc { get; set; }
|
|
public decimal QtaCurr { get; set; }
|
|
public DateTime DtMod { get; set; }
|
|
public bool Attivo { get; set; }
|
|
}
|
|
}
|