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

10 lines
157 B
C#

using System;
namespace Tapeti.Flow.Annotations
{
public class RequestAttribute : Attribute
{
public Type Response { get; set; }
}
}