10 lines
180 B
C#
10 lines
180 B
C#
namespace EveOPreview.Mediator
|
|
{
|
|
/// <summary>
|
|
/// Base class for all Mediator notifications
|
|
/// </summary>
|
|
public interface INotification
|
|
{
|
|
bool IsEmpty();
|
|
}
|
|
} |