using System; using System.Collections.Generic; #nullable disable namespace LiMan.GLS.DatabaseModels { public partial class Permessi { #region Public Constructors public Permessi() { Permessi2Funziones = new HashSet(); } #endregion Public Constructors #region Public Properties public string CodPermesso { get; set; } public string Descrizione { get; set; } public int? Gruppo { get; set; } public string Nome { get; set; } public int? Numero { get; set; } public virtual ICollection Permessi2Funziones { get; set; } public string Url { get; set; } #endregion Public Properties } }