Backend/e-suite.Workflow.Core/Tasks/MilestoneTask.cs

18 lines
494 B
C#

using e_suite.Workflow.Core.Attributes;
namespace e_suite.Workflow.Core.Tasks;
/// <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
{
//Todo can only be on a run-time instance
//public override async Task OnActivateAsync()
//{
// await base.OnActivateAsync();
// TaskState = TaskState.ReadyToComplete;
//}
}