Files
Ursa.Avalonia/src/Ursa/Controls/Notification/INotificationManager.cs
2024-09-09 19:09:05 +08:00

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);
}