1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2026-04-21 22:05:38 -04:00

New: On Add Series connection event

Closes #3637
This commit is contained in:
Mark McDowall
2023-04-14 16:44:49 -07:00
parent 619ac557f9
commit dec6e14036
40 changed files with 354 additions and 14 deletions
@@ -0,0 +1,9 @@
using System.Collections.Generic;
namespace NzbDrone.Core.Notifications.Webhook
{
public class WebhookSeriesAddPayload : WebhookPayload
{
public WebhookSeries Series { get; set; }
}
}