mirror of
https://github.com/Lidarr/Lidarr
synced 2026-01-03 06:07:43 +01:00
11 lines
280 B
C#
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; }
|
|
}
|
|
}
|