14 lines
411 B
C#
14 lines
411 B
C#
namespace Ursa.Controls;
|
|
|
|
/// <summary>
|
|
/// Represents a notification manager that can be used to show notifications in a window or using
|
|
/// the host operating system.
|
|
/// </summary>
|
|
public interface INotificationManager
|
|
{
|
|
/// <summary>
|
|
/// Show a notification.
|
|
/// </summary>
|
|
/// <param name="notification">The notification to be displayed.</param>
|
|
void Show(INotification notification);
|
|
} |