namespace Ursa.Controls;
///
/// Represents a notification manager that can be used to show notifications in a window or using
/// the host operating system.
///
public interface INotificationManager
{
///
/// Show a notification.
///
/// The notification to be displayed.
void Show(INotification notification);
}