1
0
mirror of https://github.com/Radarr/Radarr.git synced 2026-04-21 22:05:43 -04:00

updates and compile-able

This commit is contained in:
Devin Buhl
2017-01-15 15:28:35 -05:00
parent 47824426c6
commit ec1c81e3ed
25 changed files with 457 additions and 154 deletions
@@ -0,0 +1,11 @@
using NzbDrone.Core.ThingiProvider;
namespace NzbDrone.Core.NetImport
{
public class NetImportDefinition : ProviderDefinition
{
public bool Enabled { get; set; }
public string Link { get; set; }
public override bool Enable => Enabled;
}
}