Files
NotificationFlyout/src/NotificationFlyout.Wpf.UI/Helpers/NotificationIconInvokedEventArgs.cs
T
2021-02-09 17:11:24 +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; }
}
}