namespace DesktopNotifications
{
///
/// Reasons why a notification was dismissed.
///
public enum NotificationDismissReason
{
///
/// The user closed the notification.
///
User,
///
/// The notification expired.
///
Expired,
///
/// The notification was explicitly removed by application code.
///
Application
}
}