Mark van Renswoude
74985e45de
Some are silly, like the "member not used" for public interfaces. The comments everywhere are ugly, sorry, but it keeps the possibly important issues visible without a dependency on some ReSharper annotations package.
19 lines
403 B
C#
19 lines
403 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
|
|
{
|
|
}
|
|
}
|