using System; using System.Collections.Generic; using System.Linq; using System.Linq.Expressions; using System.Text; using System.Threading.Tasks; namespace WCS.Core { public class WorkInfo { public Action Work { get; set; } public IEnumerable Params { get; set; } public string Title { get; set; } public bool Parallel { get; set; } } public class WorkInfo { public virtual Action Work { get; set; } public IEnumerable Params { get; set; } public string Title { get; set; } public bool Parallel { get; set; } } }