Ya perdí el hilo de los cambios pero ahi van.
This commit is contained in:
@@ -0,0 +1,18 @@
|
||||
namespace GestionIntegral.Api.Dtos.Contables
|
||||
{
|
||||
public class PagoDistribuidorDto
|
||||
{
|
||||
public int IdPago { get; set; }
|
||||
public int IdDistribuidor { get; set; }
|
||||
public string NombreDistribuidor { get; set; } = string.Empty;
|
||||
public string Fecha { get; set; } = string.Empty; // yyyy-MM-dd
|
||||
public string TipoMovimiento { get; set; } = string.Empty; // "Recibido" / "Realizado"
|
||||
public int Recibo { get; set; }
|
||||
public decimal Monto { get; set; }
|
||||
public int IdTipoPago { get; set; }
|
||||
public string NombreTipoPago { get; set; } = string.Empty;
|
||||
public string? Detalle { get; set; }
|
||||
public int IdEmpresa { get; set; }
|
||||
public string NombreEmpresa { get; set; } = string.Empty; // Empresa del saldo afectado
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user