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

15 lines
707 B
C#
Raw Normal View History

using System;
using System.Collections.Generic;
namespace GestionIntegral.Api.Dtos.Reportes.ViewModels
{
public class MovimientoBobinasEstadoViewModel
{
public IEnumerable<MovimientoBobinaEstadoDetalleDto> Detalles { get; set; } = new List<MovimientoBobinaEstadoDetalleDto>();
public IEnumerable<MovimientoBobinaEstadoTotalDto> Totales { get; set; } = new List<MovimientoBobinaEstadoTotalDto>();
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");
}
}