Files
Readarr/src/NzbDrone.Core/Notifications/Webhook/WebhookImportPayload.cs
T
2020-05-09 22:24:45 +01:00

12 lines
306 B
C#

using System.Collections.Generic;
namespace NzbDrone.Core.Notifications.Webhook
{
public class WebhookImportPayload : WebhookPayload
{
public WebhookAlbum Book { get; set; }
public List<WebhookTrackFile> TrackFiles { get; set; }
public bool IsUpgrade { get; set; }
}
}