2017-01-31 11:01:08 +00:00
|
|
|
|
using System;
|
|
|
|
|
|
2018-12-19 19:50:56 +00:00
|
|
|
|
namespace Tapeti.Annotations
|
2017-01-31 11:01:08 +00:00
|
|
|
|
{
|
2017-02-15 21:05:01 +00:00
|
|
|
|
[AttributeUsage(AttributeTargets.Class)]
|
2017-01-31 11:01:08 +00:00
|
|
|
|
public class RequestAttribute : Attribute
|
|
|
|
|
{
|
|
|
|
|
public Type Response { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|