using System; using System.Collections.Generic; #nullable disable namespace LiMan.GLS.DatabaseModels { public partial class AnagApplicazioni { #region Public Constructors public AnagApplicazioni() { LicenzeAttives = new HashSet(); } #endregion Public Constructors #region Public Properties public string Applicativo { get; set; } public string Descrizione { get; set; } public virtual ICollection LicenzeAttives { get; set; } #endregion Public Properties } }