11 lines
321 B
C#
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; }
|
|
}
|
|
} |