6c3cf425f2
- gestione backup conf app OK - gestione tab salvate come json OK - gestione IOB OK - gestione zip + pwd OK - gestione upload OK (debug su DEV, poi in prod)
39 lines
909 B
C#
39 lines
909 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
#nullable disable
|
|
|
|
namespace MP.AppAuth.Models
|
|
{
|
|
[Table("AnagraficaStati")]
|
|
public partial class AnagraficaStati
|
|
{
|
|
#region Public Properties
|
|
|
|
[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; } = false;
|
|
|
|
[MaxLength(50)]
|
|
public string KeyStato { get; set; } = "";
|
|
|
|
[MaxLength(50)]
|
|
public string NoteStato { get; set; } = "";
|
|
|
|
#endregion Public Properties
|
|
}
|
|
} |