mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-21 22:04:31 -04:00
e199e40621
(cherry picked from commit 59dd3b11271a63ea16f0e32a596dba8e9b9d1096)
10 lines
228 B
C#
10 lines
228 B
C#
namespace NzbDrone.Core.Notifications.Signal
|
|
{
|
|
public class SignalPayload
|
|
{
|
|
public string Message { get; set; }
|
|
public string Number { get; set; }
|
|
public string[] Recipients { get; set; }
|
|
}
|
|
}
|