using System; using System.Collections.Generic; using PropertyChanged; namespace bdAsegasa.db; [AddINotifyPropertyChangedInterface] public partial class colectivos { public int idColectivo { get; set; } public string? descripcion { get; set; } public string? numeroOrden { get; set; } public string? referenciaHP { get; set; } public virtual ICollection polizasagrario { get; set; } = new List(); }