mirror of
https://github.com/Radarr/Radarr.git
synced 2026-04-28 23:07:13 -04:00
Tags
New: Ability to tag series New: Use tags to control which series use which notification channels
This commit is contained in:
@@ -1,13 +1,20 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using NzbDrone.Core.ThingiProvider;
|
||||
|
||||
namespace NzbDrone.Core.Notifications
|
||||
{
|
||||
public class NotificationDefinition : ProviderDefinition
|
||||
{
|
||||
public NotificationDefinition()
|
||||
{
|
||||
Tags = new HashSet<Int32>();
|
||||
}
|
||||
|
||||
public Boolean OnGrab { get; set; }
|
||||
public Boolean OnDownload { get; set; }
|
||||
public Boolean OnUpgrade { get; set; }
|
||||
public HashSet<Int32> Tags { get; set; }
|
||||
|
||||
public override Boolean Enable
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user