raflop/ToastNotifications

View on GitHub
Src/ToastNotifications/Core/INotification.cs

Summary

Maintainability
A
0 mins
Test Coverage
using System;

namespace ToastNotifications.Core
{
    public interface INotification
    {
        int Id { get; set; }

        NotificationDisplayPart DisplayPart { get; }

        void Bind(Action<INotification> closeAction);

        void Close();

        string Message { get; }
        bool CanClose { get; set; }

        MessageOptions Options {get; }
    }
}