Mark van Renswoude
bcdb376256
Added test for publish overflows Removed support for Unity Container Changed third party package references to ranges Fixed XML documentation
16 lines
405 B
C#
16 lines
405 B
C#
using System;
|
|
using JetBrains.Annotations;
|
|
|
|
namespace Tapeti.Flow.Annotations
|
|
{
|
|
/// <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
|
|
{
|
|
}
|
|
}
|