using System; using System.Collections.Generic; using PropertyChanged; namespace bdAsegasa.db; [AddINotifyPropertyChangedInterface] public partial class liquidacionesagenterecibos { public int idliquidacionesagenterecibo { get; set; } public int idLiquidacionesAgente { get; set; } public int idRecibo { get; set; } public double? Importe { get; set; } public int? idRegularizacion { get; set; } public virtual liquidacionesagentes idLiquidacionesAgenteNavigation { get; set; } = null!; public virtual recibos idReciboNavigation { get; set; } = null!; public virtual regularizacionespagosagentes? idRegularizacionNavigation { get; set; } public virtual ICollection regularizacionespagosagentes { get; set; } = new List(); }