using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ShwasherSys.Order.Dto { public class ProductionProcessDto { public string ProcessName { get; set; } public string CurrentStatus { get; set; } public DateTime? StartDate { get; set; } public DateTime? EndDate { get; set; } } }