14 lines
561 B
C#
14 lines
561 B
C#
|
|
namespace GestionIntegral.Api.Dtos.Reportes
|
||
|
|
{
|
||
|
|
public class FacturasParaReporteDto
|
||
|
|
{
|
||
|
|
public int IdFactura { get; set; }
|
||
|
|
public string Periodo { get; set; } = string.Empty;
|
||
|
|
public string NombreSuscriptor { get; set; } = string.Empty;
|
||
|
|
public string TipoDocumento { get; set; } = string.Empty;
|
||
|
|
public string NroDocumento { get; set; } = string.Empty;
|
||
|
|
public decimal ImporteFinal { get; set; }
|
||
|
|
public int IdEmpresa { get; set; }
|
||
|
|
public string NombreEmpresa { get; set; } = string.Empty;
|
||
|
|
}
|
||
|
|
}
|