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

10 lines
157 B
C#
Raw Normal View History

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