Files
Mapo-IOB/SMGen.Data/DbModels/AnagStatiModel.cs
T
zaccaria.majid e246e919d0 ok fix files
2023-09-19 14:59:15 +02:00

30 lines
871 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")]
public class AnagStatiModel
{
[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;
[MaxLength(50)]
public string KeyStato { get; set; } = "";
[MaxLength(50)]
public string NoteStato { get; set; } = "";
}
}