1
0
mirror of https://github.com/Radarr/Radarr.git synced 2026-04-22 22:15:17 -04:00
Files
Radarr/src/NzbDrone.Core/NetImport/NetImportDefinition.cs
T

23 lines
649 B
C#

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<int>();
}
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;
}
}