Ya perdí el hilo de los cambios pero ahi van.
This commit is contained in:
		| @@ -0,0 +1,16 @@ | ||||
| using System; | ||||
| namespace GestionIntegral.Api.Models.Contables | ||||
| { | ||||
|     public class PagoDistribuidor // Corresponde a cue_PagosDistribuidor | ||||
|     { | ||||
|         public int IdPago { get; set; } // Id_Pago (PK, Identity) | ||||
|         public int IdDistribuidor { get; set; } | ||||
|         public DateTime Fecha { get; set; } | ||||
|         public string TipoMovimiento { get; set; } = string.Empty; // "Recibido" o "Realizado" | ||||
|         public int Recibo { get; set; } // Nro de recibo | ||||
|         public decimal Monto { get; set; } | ||||
|         public int IdTipoPago { get; set; } // FK a cue_dtTipopago | ||||
|         public string? Detalle { get; set; } | ||||
|         public int IdEmpresa { get; set; } // Empresa a la que corresponde el saldo afectado | ||||
|     } | ||||
| } | ||||
		Reference in New Issue
	
	Block a user