CapaDto.cs 266 B

123456789101112
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace ProductionLineMonitor.Application.Services.LineService.Dtos
  5. {
  6. public class CapaDto
  7. {
  8. public int Capa { get; set; }
  9. public double TargetTT { get; set; }
  10. }
  11. }