using System.Collections.Generic; namespace NzbDrone.Core.AutoTagging { public class AutoTaggingChanges { public HashSet TagsToAdd { get; set; } public HashSet TagsToRemove { get; set; } public AutoTaggingChanges() { TagsToAdd = new HashSet(); TagsToRemove = new HashSet(); } } }