mirror of
https://github.com/Radarr/Radarr.git
synced 2026-04-20 21:55:03 -04:00
10 lines
271 B
C#
10 lines
271 B
C#
namespace NzbDrone.Core.Notifications.Webhook
|
|
{
|
|
public class WebhookApplicationUpdatePayload : WebhookPayload
|
|
{
|
|
public string Message { get; set; }
|
|
public string PreviousVersion { get; set; }
|
|
public string NewVersion { get; set; }
|
|
}
|
|
}
|