using System; namespace Gumming.Execute.Workflow { public class StationWork { public FlowUnit FlowUnit { get; set; } public string StationName { get; set; } public int StationNo { get; set; } public DateTime StartTime { get; set; } public DateTime EndTime { get; set; } public bool Done { get; set; } public StationWork() { } public StationWork(FlowUnit flowUnit, string stationName, DateTime startTime, DateTime endTime, bool done) { FlowUnit = flowUnit; StationName = stationName; StartTime = startTime; EndTime = endTime; Done = done; } } }