1
0
mirror of synced 2024-06-17 10:37:38 +00:00
Tapeti/MessageController.cs

17 lines
361 B
C#

using Tapeti.Annotations;
namespace Tapeti
{
/// <summary>
/// Base class for message controllers
/// </summary>
/// <remarks>
/// Using this base class is not required, you can add the MessageController attribute
/// to any class.
/// </remarks>
[MessageController]
public abstract class MessageController
{
}
}