mirror of
https://github.com/Sonarr/Sonarr.git
synced 2026-04-20 21:54:58 -04:00
dec6e14036
Closes #3637
10 lines
205 B
C#
10 lines
205 B
C#
using System.Collections.Generic;
|
|
|
|
namespace NzbDrone.Core.Notifications.Webhook
|
|
{
|
|
public class WebhookSeriesAddPayload : WebhookPayload
|
|
{
|
|
public WebhookSeries Series { get; set; }
|
|
}
|
|
}
|