Files
mapo-core/MP.Data/DbModels/AnagStatiModel.cs
T
Samuele E. Locatelli 50d65eebaa MP.DATA, riorganizzazioni varie:
- renaming classi gestione DbModels in
- spostamento anagrafica flussi da auth a generale
2025-03-08 10:40:09 +01:00

27 lines
903 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 MP.Data.DbModels
{
[Table("AnagraficaStati")]
public class AnagStatiModel
{
[Key, DatabaseGenerated(DatabaseGeneratedOption.Identity)]
public int IdxStato { get; set; } = 0;
public string Descrizione { get; set; } = "";
public string Semaforo { get; set; } = "";
public int Priorita { get; set; } = 0;
public string ClasseTempo { get; set; } = "";
public bool ShowArticolo { get; set; } = true;
public string KeyStato { get; set; } = "";
public string NoteStato { get; set; } = "";
//public string CssClass { get; set; } = "";
//public string Icon { get; set; } = "";
}
}