10 lines
162 B
C#
10 lines
162 B
C#
using System;
|
|
|
|
namespace Tapeti.Annotations
|
|
{
|
|
[AttributeUsage(AttributeTargets.Method)]
|
|
public class MessageHandlerAttribute : Attribute
|
|
{
|
|
}
|
|
}
|