aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/StubsUtils/Notifications.Wpf/INotificationManager.cs
blob: 736a46e2bb87839a98971ba3a86e45ad00d12011 (plain)
1
2
3
4
5
6
7
8
9
using System;

namespace Notifications.Wpf
{
    public interface INotificationManager
    {
        void Show(object content, string areaName = "", TimeSpan? expirationTime = null, Action onClick = null, Action onClose = null);
    }
}