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

15 lines
438 B
C#
Raw Normal View History

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
{
}
}