Files
NotificationFlyout/NotificationFlyout.Wpf.UI/Helpers/NotificationIconInvokedEventArgs.cs
T
Daniel Clark 45a9eb9cd2 init
2021-02-05 01:39:51 +00:00

10 lines
229 B
C#

using System;
using System.Windows.Input;
namespace NotificationFlyout.Wpf.UI.Helpers
{
public class NotificationIconInvokedEventArgs : EventArgs
{
public MouseButton MouseButton { get; internal set; }
}
}