QueryCapa.cs 323 B

12345678910111213
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace ProductionLineMonitor.Application.Services.LineService.Dtos
  5. {
  6. public class QueryCapa
  7. {
  8. public int Floor { get; set; }
  9. public int Line { get; set; }
  10. public string Device { get; set; } = string.Empty;
  11. }
  12. }