mirror of
https://github.com/Radarr/Radarr.git
synced 2026-04-20 21:55:03 -04:00
9e175e28ef
Fixes #4681 [common]
12 lines
305 B
C#
12 lines
305 B
C#
using NzbDrone.Core.HealthCheck;
|
|
|
|
namespace NzbDrone.Core.Notifications.Webhook
|
|
{
|
|
public class WebhookApplicationUpdatePayload : WebhookPayload
|
|
{
|
|
public string Message { get; set; }
|
|
public string PreviousVersion { get; set; }
|
|
public string NewVersion { get; set; }
|
|
}
|
|
}
|