// Copyright (c) Umbraco.
// See LICENSE for more details.
using Umbraco.Cms.Core.Notifications;
namespace Umbraco.Cms.Core.Events
{
///
/// Defines a handler for a notification.
///
/// The type of notification being handled.
public interface INotificationHandler
where TNotification : INotification
{
///
/// Handles a notification
///
/// The notification
void Handle(TNotification notification);
}
}