mirror of
https://github.com/Radarr/Radarr.git
synced 2026-04-26 22:46:53 -04:00
12 lines
327 B
C#
12 lines
327 B
C#
using NzbDrone.Core.MediaFiles;
|
|
|
|
namespace NzbDrone.Core.Notifications.Webhook
|
|
{
|
|
public class WebhookMovieFileDeletePayload : WebhookPayload
|
|
{
|
|
public WebhookMovie Movie { get; set; }
|
|
public WebhookMovieFile MovieFile { get; set; }
|
|
public DeleteMediaFileReason DeleteReason { get; set; }
|
|
}
|
|
}
|