Files
GestionIntegralWeb/Backend/GestionIntegral.Api/Models/Dtos/Reportes/BalanceCuentaPagosDto.cs

9 lines
352 B
C#
Raw Normal View History

public class BalanceCuentaPagosDto // Para SP_BalanceCuentDistPagos y SP_BalanceCuentDistPagosEmpresa
{
public DateTime Fecha { get; set; }
public int Recibo { get; set; }
public string Tipo { get; set; } = string.Empty;
public decimal Debe { get; set; }
public decimal Haber { get; set; }
public string? Detalle { get; set; }
}