9 lines
352 B
C#
9 lines
352 B
C#
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; }
|
|
} |