Files
Mapo-IOB/SMGen.Data/DbModels/AnagStatiModelTemp.cs
T
2023-07-26 12:26:41 +02:00

26 lines
728 B
C#

using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace SMGen.Data.DbModels
{
[Table("AnagraficaStati_Chk")]
public class AnagStatiModelTemp
{
[Key]
public int IdxStato { get; set; } = 0;
[MaxLength(50)]
public string Descrizione { get; set; } = "";
[MaxLength(50)]
public string Semaforo { get; set; } = "";
public int Priorita { get; set; } = 0;
[MaxLength(50)]
public string ClasseTempo { get; set; } = "";
public bool ShowArticolo { get; set; } = true;
}
}