mirror of
https://github.com/Radarr/Radarr.git
synced 2026-04-26 22:46:53 -04:00
10 lines
267 B
C#
10 lines
267 B
C#
namespace NzbDrone.Core.Notifications.Webhook
|
|
{
|
|
public class WebhookMovieDeletePayload : WebhookPayload
|
|
{
|
|
public WebhookMovie Movie { get; set; }
|
|
public bool DeletedFiles { get; set; }
|
|
public long MovieFolderSize { get; set; }
|
|
}
|
|
}
|