using System; using System.Collections.Generic; using PropertyChanged; namespace bdAsegasa.db; [AddINotifyPropertyChangedInterface] public partial class avant2__suborganizaciones { public uint id { get; set; } public string descripcion { get; set; } = null!; public string codigo { get; set; } = null!; public virtual ICollection agentes { get; set; } = new List(); public virtual ICollection avant2__agentes { get; set; } = new List(); public virtual ICollection subagentes { get; set; } = new List(); }