Files
ntfysh-windows/ntfysh_client/Notifications/NotificationReceiveEventArgs.cs
Alexander Horner d90ddc3be4 Solution cleanup
2022-12-08 19:33:08 +00:00

16 lines
355 B
C#

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