Files
NotificationFlyout/src/NotificationFlyout.Shared.UI/Helpers/NotificationIconInvokedEventArgs.cs
T

11 lines
321 B
C#

using System;
namespace NotificationFlyout.Shared.UI.Helpers
{
public class NotificationIconInvokedEventArgs : EventArgs
{
internal NotificationIconInvokedEventArgs(PointerButton pointerButton) => PointerButton = pointerButton;
public PointerButton PointerButton { get; private set; }
}
}