Complete refactor, reasync, rebuild listener
This commit is contained in:
16
ntfysh_client/NotificationReceiveEventArgs.cs
Normal file
16
ntfysh_client/NotificationReceiveEventArgs.cs
Normal 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;
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user