using System.Collections.Generic; using NzbDrone.Core.ThingiProvider; using NzbDrone.Core.Movies; namespace NzbDrone.Core.NetImport { public class NetImportDefinition : ProviderDefinition { public NetImportDefinition() { Tags = new HashSet(); } public bool Enabled { get; set; } public bool EnableAuto { get; set; } public bool ShouldMonitor { get; set; } public MovieStatusType MinimumAvailability { get; set; } public int ProfileId { get; set; } public string RootFolderPath { get; set; } public override bool Enable => Enabled; } }