using System; using System.Collections.Generic; using System.Text; namespace ProductionLineMonitor.Application.Services.LineService.Dtos { public class QueryCapa { public int Floor { get; set; } public int Line { get; set; } public string Device { get; set; } = string.Empty; } }