using System.Collections.Generic; using NzbDrone.Core.AutoTagging.Specifications; using NzbDrone.Core.Datastore; namespace NzbDrone.Core.AutoTagging { public class AutoTag : ModelBase { public AutoTag() { Tags = new HashSet(); } public string Name { get; set; } public List Specifications { get; set; } public bool RemoveTagsAutomatically { get; set; } public HashSet Tags { get; set; } } }