namespace GestionIntegral.Api.Dtos.Impresion { public class PlantaDto { public int IdPlanta { get; set; } public string Nombre { get; set; } = string.Empty; public string Detalle { get; set; } = string.Empty; } }