using System; using System.Collections.Generic; using System.Text; namespace ProductionLineMonitor.Application.Services.FaultService.Dtos { public class LineFaultDto : MachineFaultDto { public string MachineType { get; set; } = string.Empty; public int DataSource { get; set; } } }