Files
Readarr/src/NzbDrone.Core/Notifications/Webhook/WebhookApplicationUpdatePayload.cs
T
2023-02-04 19:30:54 -06:00

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; }
}
}