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)
45 lines
1.0 KiB
C#
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
|
|
}
|
|
} |