mirror of
https://github.com/Radarr/Radarr.git
synced 2026-04-22 22:15:17 -04:00
2e252771de
(cherry picked from commit c6b543e0729bc20f15e37d074fbf31d8c76c187a)
11 lines
247 B
C#
11 lines
247 B
C#
using NzbDrone.Core.Movies;
|
|
|
|
namespace NzbDrone.Core.Notifications.Webhook
|
|
{
|
|
public class WebhookAddedPayload : WebhookPayload
|
|
{
|
|
public WebhookMovie Movie { get; set; }
|
|
public AddMovieMethod AddMethod { get; set; }
|
|
}
|
|
}
|