Files
2024-05-02 19:53:59 +02:00

26 lines
752 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 MagMan.Data.Tenant.DbModels
{
[Table("AnagStati")]
public class StatusModel
{
[Key]
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; } = false;
public string KeyStato { get; set; } = "";
public string NoteStato { get; set; } = "";
}
}