LineFaultDto.cs 314 B

123456789101112
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace ProductionLineMonitor.Application.Services.FaultService.Dtos
  5. {
  6. public class LineFaultDto : MachineFaultDto
  7. {
  8. public string MachineType { get; set; } = string.Empty;
  9. public int DataSource { get; set; }
  10. }
  11. }