2016-12-05 07:00:09 +00:00
|
|
|
|
using Tapeti.Annotations;
|
|
|
|
|
|
2018-12-19 19:50:56 +00:00
|
|
|
|
// ReSharper disable UnusedMember.Global
|
|
|
|
|
|
2016-12-05 07:00:09 +00:00
|
|
|
|
namespace Tapeti
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
2019-08-15 09:26:55 +00:00
|
|
|
|
/// Base class for message controllers.
|
2016-12-05 07:00:09 +00:00
|
|
|
|
/// </summary>
|
|
|
|
|
/// <remarks>
|
|
|
|
|
/// Using this base class is not required, you can add the MessageController attribute
|
|
|
|
|
/// to any class.
|
|
|
|
|
/// </remarks>
|
|
|
|
|
[MessageController]
|
|
|
|
|
public abstract class MessageController
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
}
|