10 lines
229 B
C#
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; }
|
|
}
|
|
} |