2025-07-29 14:11:50 -03:00
|
|
|
namespace GestionIntegral.Api.Models.Suscripciones
|
|
|
|
|
{
|
|
|
|
|
public class Factura
|
|
|
|
|
{
|
|
|
|
|
public int IdFactura { get; set; }
|
2025-08-08 09:48:15 -03:00
|
|
|
public int IdSuscriptor { get; set; }
|
2025-07-29 14:11:50 -03:00
|
|
|
public string Periodo { get; set; } = string.Empty;
|
|
|
|
|
public DateTime FechaEmision { get; set; }
|
|
|
|
|
public DateTime FechaVencimiento { get; set; }
|
|
|
|
|
public decimal ImporteBruto { get; set; }
|
|
|
|
|
public decimal DescuentoAplicado { get; set; }
|
|
|
|
|
public decimal ImporteFinal { get; set; }
|
2025-08-08 09:48:15 -03:00
|
|
|
public string EstadoPago { get; set; } = string.Empty;
|
|
|
|
|
public string EstadoFacturacion { get; set; } = string.Empty;
|
2025-07-29 14:11:50 -03:00
|
|
|
public string? NumeroFactura { get; set; }
|
|
|
|
|
public int? IdLoteDebito { get; set; }
|
|
|
|
|
public string? MotivoRechazo { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|