1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2026-04-21 22:05:38 -04:00
Files
Sonarr/src/NzbDrone.Core/Notifications/Webhook/WebhookEpisodeDeletePayload.cs
T
Robin Dadswell c91fabcf2d New: On Delete Notifications
Closes #2410
2021-01-24 01:21:29 -08:00

12 lines
272 B
C#

using System.Collections.Generic;
namespace NzbDrone.Core.Notifications.Webhook
{
public class WebhookEpisodeDeletePayload : WebhookPayload
{
public WebhookSeries Series { get; set; }
public List<WebhookEpisode> Episodes { get; set; }
}
}