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