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

17 lines
572 B
C#
Raw Normal View History

using System.Collections.Generic;
2013-05-20 01:32:05 +00:00
namespace NzbDrone.Api.Notifications
{
public class NotificationResource : ProviderResource
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 SupportsOnGrab { get; set; }
public bool SupportsOnDownload { get; set; }
public bool SupportsOnUpgrade { get; set; }
public bool SupportsOnRename { get; set; }
2015-04-25 16:02:17 +00:00
public HashSet<int> Tags { get; set; }
2013-05-20 01:32:05 +00:00
}
}