2016-12-05 07:00:09 +00:00
|
|
|
|
using System;
|
|
|
|
|
|
|
|
|
|
namespace Tapeti.Annotations
|
|
|
|
|
{
|
2019-03-19 10:47:52 +00:00
|
|
|
|
/// <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>
|
2016-12-05 07:00:09 +00:00
|
|
|
|
[AttributeUsage(AttributeTargets.Class)]
|
|
|
|
|
public class MessageControllerAttribute : Attribute
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
}
|