Complete refactor, reasync, rebuild listener

This commit is contained in:
Alexander Horner
2022-12-06 22:34:32 +00:00
parent 5a4dfc01b6
commit ed5a43a0e8
8 changed files with 234 additions and 206 deletions

View File

@@ -0,0 +1,16 @@
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;
}
}
}