Dashboard/Dashboard.Common/Windowing/IEventListener.cs

12 lines
284 B
C#
Raw Normal View History

namespace Dashboard.Windowing
{
public interface IEventListener
{
/// <summary>
/// Send an event to this windowing object.
/// </summary>
/// <param name="args">The event arguments sent.</param>
void SendEvent(EventArgs args);
}
}