using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Common { public class WorkflowActionAnalysis { public WorkflowActionAnalysis() { this.WorkflowActions = new List(); this.UnsupportedActions = new List(); } public List WorkflowActions { get; set; } public int ActionCount { get; set; } public List UnsupportedActions { get; set; } public int UnsupportedAccountCount { get; set; } } }