using Artemis.UI.Shared.Services.Builders;
namespace Artemis.UI.Shared.Services
{
///
/// A service that can be used to create notifications in either the application or on the desktop.
///
public interface INotificationService : IArtemisSharedUIService
{
///
/// Creates an in-app notification using a builder.
///
/// A builder used to configure and show the notification.
NotificationBuilder CreateNotification();
}
}