1
0
mirror of synced 2024-07-01 16:27:40 +00:00
Tapeti/Tapeti.Flow/Annotations/StartAttribute.cs

17 lines
428 B
C#

using System;
using JetBrains.Annotations;
namespace Tapeti.Flow.Annotations
{
/// <inheritdoc />
/// <summary>
/// Marks this method as the start of a Tapeti Flow. Use IFlowStarter.Start to begin a new flow and
/// call this method. Must return an IYieldPoint.
/// </summary>
[AttributeUsage(AttributeTargets.Method)]
[MeansImplicitUse]
public class StartAttribute : Attribute
{
}
}