1
0
mirror of synced 2024-06-25 22:07:39 +00:00
Tapeti/Tapeti/MessageController.cs
Mark van Renswoude fed377992b [ci skip] Done with XML documentation for now
Made a few classes internal that were supposed to be
2019-08-15 11:26:55 +02:00

19 lines
404 B
C#

using Tapeti.Annotations;
// ReSharper disable UnusedMember.Global
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
{
}
}