1
0
mirror of synced 2024-07-01 08:17:39 +00:00
Tapeti/Tapeti.Annotations/RequestAttribute.cs

11 lines
202 B
C#
Raw Permalink Normal View History

using System;
namespace Tapeti.Flow.Annotations
{
[AttributeUsage(AttributeTargets.Class)]
public class RequestAttribute : Attribute
{
public Type Response { get; set; }
}
}