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 } }