Radarr/src/NzbDrone.Core/Notifications/Pushcut/PushcutPayload.cs

10 lines
228 B
C#

namespace NzbDrone.Core.Notifications.Pushcut
{
public class PushcutPayload
{
public string Title { get; set; }
public string Text { get; set; }
public bool? IsTimeSensitive { get; set; }
}
}