using System; using System.Collections.Generic; namespace GestionIntegral.Api.Dtos.Reportes.ViewModels { public class ComparativaConsumoBobinasViewModel { public IEnumerable Detalles { get; set; } = new List(); public string? NombrePlanta { get; set; } public string MesA { get; set; } = string.Empty; public string MesB { get; set; } = string.Empty; public string FechaReporte { get; set; } = DateTime.Now.ToString("dd/MM/yyyy"); public bool EsConsolidado => string.IsNullOrEmpty(NombrePlanta); } }