11 lines
337 B
C#
11 lines
337 B
C#
using e_suite.Workflow.Core.Attributes;
|
|
using e_suite.Workflow.Core.Enums;
|
|
using e_suite.Workflow.Core.Interfaces;
|
|
|
|
namespace e_suite.Workflow.Core.Tasks;
|
|
|
|
[GeneralTask]
|
|
public class VisualBriefUploadTask : TaskBase, IOutcome<DefaultOutcome>
|
|
{
|
|
public Dictionary<DefaultOutcome, Guid> OutcomeActions { get; set; } = [];
|
|
} |