Files
GestionIntegralWeb/Backend/GestionIntegral.Api/Models/Dtos/Reportes/ViewModels/ExistenciaPapelViewModel.cs

14 lines
548 B
C#
Raw Normal View History

2025-06-19 14:47:43 -03:00
using System;
using System.Collections.Generic;
namespace GestionIntegral.Api.Dtos.Reportes.ViewModels
{
public class ExistenciaPapelViewModel
{
public IEnumerable<ExistenciaPapelDto> Existencias { get; set; } = new List<ExistenciaPapelDto>();
public string NombrePlanta { get; set; } = string.Empty;
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");
}
}