Files
GestionIntegralWeb/Backend/GestionIntegral.Api/Models/Suscripciones/LoteDebito.cs

13 lines
474 B
C#

namespace GestionIntegral.Api.Models.Suscripciones
{
public class LoteDebito
{
public int IdLoteDebito { get; set; }
public DateTime FechaGeneracion { get; set; }
public string Periodo { get; set; } = string.Empty;
public string NombreArchivo { get; set; } = string.Empty;
public decimal ImporteTotal { get; set; }
public int CantidadRegistros { get; set; }
public int IdUsuarioGeneracion { get; set; }
}
}