using Neo.Afx.Services.Notifications.Entities; using System.Collections.Generic; using System.Configuration; using Neo.LegitimateLicences.Common.Helpers; using Neo.Afx.ViewModels; namespace Neo.LegitimateLicences.Common.ViewModels { public class ResponsiveAppWorkflowTaskActionModel : ResponsiveAppWorkflowModel { public List Outcomes { get; set; } public List EscalateToUsers { get; set; } public List RequestCorrectionSteps { get; set; } public long WorkflowInstanceTaskID { get; set; } public bool IsComplete { get; set; } public bool CanRequestCorrection { get; set; } public bool CanSubmit { get; set; } public bool CanCancel { get; set; } public bool CanEscalate { get; set; } public bool CanReturnEscalation { get; set; } public bool CanApproveReject { get; set; } public bool CanViewComments { get; set; } } }