2025-08-01 14:38:15 -03:00
|
|
|
namespace GestionIntegral.Api.Dtos.Suscripciones
|
|
|
|
|
{
|
|
|
|
|
public class AjusteDto
|
|
|
|
|
{
|
|
|
|
|
public int IdAjuste { get; set; }
|
|
|
|
|
public int IdSuscriptor { get; set; }
|
2025-08-08 09:48:15 -03:00
|
|
|
public string FechaAjuste { get; set; } = string.Empty;
|
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 string FechaAlta { get; set; } = string.Empty; // yyyy-MM-dd
|
|
|
|
|
public string NombreUsuarioAlta { get; set; } = string.Empty;
|
|
|
|
|
}
|
|
|
|
|
}
|