17 lines
428 B
C#
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
|
|
{
|
|
}
|
|
}
|