mirror of
https://github.com/Radarr/Radarr
synced 2026-04-21 02:01:23 +02:00
10 lines
252 B
C#
10 lines
252 B
C#
using System.Collections.Generic;
|
|
|
|
namespace NzbDrone.Core.Notifications.Webhook
|
|
{
|
|
public class WebhookMovieDeletePayload : WebhookPayload
|
|
{
|
|
public WebhookMovie Movie { get; set; }
|
|
public bool DeletedFiles { get; set; }
|
|
}
|
|
}
|