using System; using System.Collections.Generic; #nullable disable namespace GPW.Data.DBModels { public partial class AnagGruppi { public AnagGruppi() { DipendentiNav = new HashSet(); } public string Gruppo { get; set; } public string DescrGruppo { get; set; } public string CodExt { get; set; } public bool? ExportEnab { get; set; } public virtual ICollection DipendentiNav { get; set; } } }