15 lines
601 B
C#
15 lines
601 B
C#
|
|
namespace GestionIntegral.Api.Dtos.Suscripciones
|
||
|
|
{
|
||
|
|
public class AjusteDto
|
||
|
|
{
|
||
|
|
public int IdAjuste { get; set; }
|
||
|
|
public int IdSuscriptor { get; set; }
|
||
|
|
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;
|
||
|
|
}
|
||
|
|
}
|