using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; #nullable disable // // This is here so CodeMaid doesn't reorganize this document // namespace MP.Data.DbModels { [Table("LinkMenuJQM")] public partial class LinkMenuModel { #region Public Properties [Key, DatabaseGenerated(DatabaseGeneratedOption.Identity)] public int idxLink { get; set; } [MaxLength(50)] public string TipoLink { get; set; } = ""; [Column("Ordine")] public int Ordine { get; set; } = 0; [MaxLength(50)] public string Testo { get; set; } = ""; [MaxLength(50)] public string NavigateUrl { get; set; } = ""; [MaxLength(50), Column("icona")] public string Icona { get; set; } = ""; [MaxLength(50)] public string Ruolo { get; set; } = ""; #endregion Public Properties } }