namespace SHJX.Service.Model.WorkFlowModules { public class WorkFlowEventArgs { public string Position { get; set; } public List MoveSteps { get; set; } public WorkFlowEventArgs(string position, List steps) { Position = position; MoveSteps = steps; } } }