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.
12 lines
167 B
C#
12 lines
167 B
C#
// ReSharper disable UnusedMember.Global
|
|
|
|
namespace Tapeti
|
|
{
|
|
public enum MessageAction
|
|
{
|
|
None = 1,
|
|
ErrorLog = 2,
|
|
Retry = 3,
|
|
}
|
|
}
|