mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-23 22:25:09 -04:00
12 lines
306 B
C#
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; }
|
|
}
|
|
}
|