using System; using System.Collections.Generic; namespace MECF.Framework.Common.Jobs { [Serializable] public class ControlJobInfo { public string Name { get; set; } public Guid InnerId { get; set; } public string Module { get; set; } public List ProcessJobNameList { get; set; } public EnumControlJobState State { get; set; } public ControlJobInfo() { ProcessJobNameList = new List(); State = EnumControlJobState.Queued; InnerId = Guid.NewGuid(); } public void SetState(EnumControlJobState state) { State = state; } } }