Radarr/src/NzbDrone.Api/Notifications/NotificationResource.cs

24 lines
940 B
C#
Raw Normal View History

using System.Collections.Generic;
2013-05-20 01:32:05 +00:00
namespace NzbDrone.Api.Notifications
{
2021-02-04 21:14:52 +00:00
public class NotificationResource : ProviderResource<NotificationResource>
2013-05-20 01:32:05 +00:00
{
2015-04-25 16:02:17 +00:00
public bool OnGrab { get; set; }
public bool OnDownload { get; set; }
public bool OnUpgrade { get; set; }
public bool OnRename { get; set; }
public bool OnMovieDelete { get; set; }
public bool OnMovieFileDelete { get; set; }
public bool OnMovieFileDeleteForUpgrade { get; set; }
public bool SupportsOnGrab { get; set; }
public bool SupportsOnDownload { get; set; }
public bool SupportsOnUpgrade { get; set; }
public bool SupportsOnRename { get; set; }
public bool SupportsOnMovieDelete { get; set; }
public bool SupportsOnMovieFileDelete { get; set; }
public bool SupportsOnMovieFileDeleteForUpgrade { get; set; }
2015-04-25 16:02:17 +00:00
public HashSet<int> Tags { get; set; }
2013-05-20 01:32:05 +00:00
}
2019-12-22 21:24:10 +00:00
}