2025-08-01 14:38:15 -03:00
|
|
|
namespace GestionIntegral.Api.Models.Suscripciones
|
|
|
|
|
{
|
|
|
|
|
public class Ajuste
|
|
|
|
|
{
|
|
|
|
|
public int IdAjuste { get; set; }
|
|
|
|
|
public int IdSuscriptor { get; set; }
|
2025-08-08 09:48:15 -03:00
|
|
|
public DateTime FechaAjuste { get; set; }
|
2025-08-01 14:38:15 -03:00
|
|
|
public string TipoAjuste { get; set; } = string.Empty;
|
|
|
|
|
public decimal Monto { get; set; }
|
|
|
|
|
public string Motivo { get; set; } = string.Empty;
|
|
|
|
|
public string Estado { get; set; } = string.Empty;
|
|
|
|
|
public int? IdFacturaAplicado { get; set; }
|
|
|
|
|
public int IdUsuarioAlta { get; set; }
|
|
|
|
|
public DateTime FechaAlta { get; set; }
|
|
|
|
|
public int? IdUsuarioAnulo { get; set; }
|
|
|
|
|
public DateTime? FechaAnulacion { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|