Files
ntfysh-windows/ntfysh_client/NotificationReceiveEventArgs.cs
2022-12-06 22:34:32 +00:00

16 lines
341 B
C#

using System;
namespace ntfysh_client
{
public class NotificationReceiveEventArgs : EventArgs
{
public string Title { get; }
public string Message { get; }
public NotificationReceiveEventArgs(string title, string message)
{
Title = title;
Message = message;
}
}
}