13 lines
494 B
C#
13 lines
494 B
C#
|
|
using System;
|
||
|
|
using System.Collections.Generic;
|
||
|
|
|
||
|
|
namespace GestionIntegral.Api.Dtos.Reportes.ViewModels
|
||
|
|
{
|
||
|
|
public class ExistenciaPapelConsolidadoViewModel
|
||
|
|
{
|
||
|
|
public IEnumerable<ExistenciaPapelDto> Existencias { get; set; } = new List<ExistenciaPapelDto>();
|
||
|
|
public string FechaDesde { get; set; } = string.Empty;
|
||
|
|
public string FechaHasta { get; set; } = string.Empty;
|
||
|
|
public string FechaReporte { get; set; } = DateTime.Now.ToString("dd/MM/yyyy");
|
||
|
|
}
|
||
|
|
}
|