14 lines
373 B
C#
14 lines
373 B
C#
namespace e_suite.Workflow.Core;
|
|
|
|
/// <summary>
|
|
/// A Milestone task does not have any specific processing, so is ready to complete as soon at it starts.
|
|
/// </summary>
|
|
[GeneralTask]
|
|
public class MilestoneTask : TaskBase
|
|
{
|
|
public override async Task OnActivateAsync()
|
|
{
|
|
await base.OnActivateAsync();
|
|
TaskState = TaskState.ReadyToComplete;
|
|
}
|
|
} |