New: Signal Notifications

(cherry picked from commit 59dd3b11271a63ea16f0e32a596dba8e9b9d1096)
This commit is contained in:
S0me6uy
2023-05-21 18:22:00 +02:00
committed by Bogdan
parent 4734cad9b1
commit e199e40621
6 changed files with 273 additions and 0 deletions
@@ -0,0 +1,9 @@
namespace NzbDrone.Core.Notifications.Signal
{
public class SignalPayload
{
public string Message { get; set; }
public string Number { get; set; }
public string[] Recipients { get; set; }
}
}