1
0
mirror of synced 2024-07-03 00:50:37 +00:00
Tapeti/Tapeti.Flow/Annotations/StartAttribute.cs

12 lines
210 B
C#

using System;
using JetBrains.Annotations;
namespace Tapeti.Flow.Annotations
{
[AttributeUsage(AttributeTargets.Method)]
[MeansImplicitUse]
public class StartAttribute : Attribute
{
}
}