MachineOutPutPerHourDto.cs 277 B

123456789101112
  1. using ProductionLineMonitor.Core.Models;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Text;
  5. namespace ProductionLineMonitor.Core.Dtos
  6. {
  7. public class MachineOutPutPerHourDto : MachineOutPutPerHour
  8. {
  9. public string Period { get; set; }
  10. }
  11. }