1
0
mirror of https://github.com/Radarr/Radarr.git synced 2026-04-26 22:46:53 -04:00
Files
Radarr/src/NzbDrone.Core/Notifications/Webhook/WebhookMovieDeletePayload.cs
T
2022-11-23 18:42:04 -06:00

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; }
}
}