Lidarr/src/NzbDrone.Core/Notifications/Webhook/WebhookPayload.cs

11 lines
280 B
C#

using System.Collections.Generic;
namespace NzbDrone.Core.Notifications.Webhook
{
public class WebhookPayload
{
public string EventType { get; set; }
public WebhookArtist Artist { get; set; }
public List<WebhookAlbum> Albums { get; set; }
}
}