Files
GestionIntegralWeb/Backend/GestionIntegral.Api/Models/Dtos/Reportes/ViewModels/ConsumoBobinasSeccionViewModel.cs
dmolinari 229eb937f5
All checks were successful
Optimized Build and Deploy / remote-build-and-deploy (push) Successful in 7m55s
QuestPdf Implementado en la totalidad de reportes.
2025-06-24 12:52:37 -03:00

17 lines
638 B
C#

using System;
using System.Collections.Generic;
namespace GestionIntegral.Api.Dtos.Reportes.ViewModels
{
public class ConsumoBobinasSeccionViewModel
{
public IEnumerable<ConsumoBobinasSeccionDto> Detalles { get; set; } = new List<ConsumoBobinasSeccionDto>();
public string? NombrePlanta { get; set; }
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");
public bool EsConsolidado => string.IsNullOrEmpty(NombrePlanta);
}
}