mirror of
https://github.com/Sonarr/Sonarr.git
synced 2026-04-21 22:05:38 -04:00
c91fabcf2d
Closes #2410
12 lines
272 B
C#
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; }
|
|
}
|
|
}
|
|
|