Files
eveo/Eve-O-Preview/Mediator/Interface/INotification.cs
2018-02-05 01:52:33 +02:00

10 lines
180 B
C#

namespace EveOPreview.Mediator
{
/// <summary>
/// Base class for all Mediator notifications
/// </summary>
public interface INotification
{
bool IsEmpty();
}
}