1
0
mirror of synced 2024-06-29 07:17:39 +00:00
Tapeti/Tapeti.Annotations/MessageControllerAttribute.cs
2019-03-19 11:47:52 +01:00

15 lines
438 B
C#

using System;
namespace Tapeti.Annotations
{
/// <inheritdoc />
/// <summary>
/// Attaching this attribute to a class includes it in the auto-discovery of message controllers
/// when using the RegisterAllControllers method. It is not required when manually registering a controller.
/// </summary>
[AttributeUsage(AttributeTargets.Class)]
public class MessageControllerAttribute : Attribute
{
}
}