Feat: Se añaden las capas de modelos y respositorios para el modulo de Suscripciones

This commit is contained in:
2025-07-29 14:11:50 -03:00
parent 7e4d3282fb
commit 19e7192a16
18 changed files with 732 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
namespace GestionIntegral.Api.Models.Suscripciones
{
public class Pago
{
public int IdPago { get; set; }
public int IdFactura { get; set; }
public DateTime FechaPago { get; set; }
public int IdFormaPago { get; set; }
public decimal Monto { get; set; }
public string Estado { get; set; } = string.Empty;
public string? Referencia { get; set; }
public string? Observaciones { get; set; }
public int IdUsuarioRegistro { get; set; }
}
}