using System; using System.Collections.Generic; 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; } } }