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

14 lines
518 B
C#
Raw Normal View History

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