using ProductionLineMonitor.Core.Enums; using System; using System.Collections.Generic; using System.Text; namespace ProductionLineMonitor.Core.Dtos { public class FaultComparisonDto { public string AlarmCode { get; set; } = string.Empty; public AlarmLevelEnum AlarmLevel { get; set; } public string AlarmInfo { get; set; } = string.Empty; } public class MachineFaultComparisonDto { public string DeviceNo { get; set; } = string.Empty; public List FaultComparisonDtos { get; set; } } }