mirror of
https://github.com/Readarr/Readarr
synced 2026-01-30 19:33:07 +01:00
9 lines
275 B
C#
9 lines
275 B
C#
namespace NzbDrone.Core.Notifications.Webhook
|
|
{
|
|
public class WebhookBookFileDeletePayload : WebhookPayload
|
|
{
|
|
public WebhookAuthor Author { get; set; }
|
|
public WebhookBook Book { get; set; }
|
|
public WebhookBookFile BookFile { get; set; }
|
|
}
|
|
}
|