17 lines
746 B
C#
17 lines
746 B
C#
|
|
namespace GestionIntegral.Api.Dtos.Suscripciones
|
||
|
|
{
|
||
|
|
public class PagoDto
|
||
|
|
{
|
||
|
|
public int IdPago { get; set; }
|
||
|
|
public int IdFactura { get; set; }
|
||
|
|
public string FechaPago { get; set; } = string.Empty; // "yyyy-MM-dd"
|
||
|
|
public int IdFormaPago { get; set; }
|
||
|
|
public string NombreFormaPago { get; set; } = string.Empty; // Enriquecido
|
||
|
|
public decimal Monto { get; set; }
|
||
|
|
public string Estado { get; set; } = string.Empty; // "Aprobado", "Rechazado"
|
||
|
|
public string? Referencia { get; set; }
|
||
|
|
public string? Observaciones { get; set; }
|
||
|
|
public int IdUsuarioRegistro { get; set; }
|
||
|
|
public string NombreUsuarioRegistro { get; set; } = string.Empty; // Enriquecido
|
||
|
|
}
|
||
|
|
}
|