Files
Samuele Locatelli 6c3cf425f2 COmpletata gestione LAND:
- 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)
2024-10-18 18:15:54 +02:00

45 lines
1.0 KiB
C#

using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
#nullable disable
namespace MP.AppAuth.Models
{
[Table("AnagraficaEventi")]
public partial class AnagraficaEventi
{
#region Public Properties
[Key]
public int IdxTipo { get; set; } = 0;
[MaxLength(50)]
public string Nome { get; set; } = "";
[MaxLength(50)]
public string TabAzione { get; set; } = "";
[MaxLength(50)]
public string Azione { get; set; } = "";
[MaxLength(50)]
public string KeyEvento { get; set; } = "";
public bool EventoTablet { get; set; } = false;
[MaxLength(50)]
public string NoteEvento { get; set; } = "";
[MaxLength(50)]
public string CssClass { get; set; } = "";
[MaxLength(50)]
public string Icon { get; set; } = "";
public Int16 OrdEventi { get; set; } = 0;
#endregion Public Properties
}
}