21 lines
552 B
C#
21 lines
552 B
C#
|
|
// Licensed to the .NET Foundation under one or more agreements.
|
||
|
|
// The .NET Foundation licenses this file to you under the MIT license.
|
||
|
|
|
||
|
|
namespace Microsoft.Maui.Platform.Linux.Services;
|
||
|
|
|
||
|
|
public class NotificationActionEventArgs : EventArgs
|
||
|
|
{
|
||
|
|
public uint NotificationId { get; }
|
||
|
|
|
||
|
|
public string ActionKey { get; }
|
||
|
|
|
||
|
|
public string? Tag { get; }
|
||
|
|
|
||
|
|
public NotificationActionEventArgs(uint notificationId, string actionKey, string? tag)
|
||
|
|
{
|
||
|
|
NotificationId = notificationId;
|
||
|
|
ActionKey = actionKey;
|
||
|
|
Tag = tag;
|
||
|
|
}
|
||
|
|
}
|