2016-12-05 08:00:09 +01:00
|
|
|
|
using System;
|
2019-05-20 15:24:12 +02:00
|
|
|
|
using JetBrains.Annotations;
|
2016-12-05 08:00:09 +01:00
|
|
|
|
|
|
|
|
|
namespace Tapeti.Annotations
|
|
|
|
|
{
|
2019-03-19 11:47:52 +01: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 08:00:09 +01:00
|
|
|
|
[AttributeUsage(AttributeTargets.Class)]
|
2019-05-27 11:48:10 +02:00
|
|
|
|
[MeansImplicitUse(ImplicitUseTargetFlags.WithMembers)]
|
2016-12-05 08:00:09 +01:00
|
|
|
|
public class MessageControllerAttribute : Attribute
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
}
|