1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2026-04-20 21:54:58 -04:00
Files
Sonarr/src/NzbDrone.Core/Notifications/Webhook/WebhookSeriesAddPayload.cs
T
2023-04-14 16:48:07 -07:00

10 lines
205 B
C#

using System.Collections.Generic;
namespace NzbDrone.Core.Notifications.Webhook
{
public class WebhookSeriesAddPayload : WebhookPayload
{
public WebhookSeries Series { get; set; }
}
}