mirror of
https://github.com/fergalmoran/Readarr.git
synced 2026-02-08 17:06:38 +00:00
11 lines
257 B
C#
11 lines
257 B
C#
using System.Collections.Generic;
|
|
|
|
namespace NzbDrone.Core.Notifications.Webhook
|
|
{
|
|
public class WebhookGrabPayload : WebhookPayload
|
|
{
|
|
public List<WebhookAlbum> Albums { get; set; }
|
|
public WebhookRelease Release { get; set; }
|
|
}
|
|
}
|