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

View File

@@ -0,0 +1,16 @@
using System.Collections.Generic;
using NzbDrone.Core.IndexerSearch.Definitions;
using NzbDrone.Core.Parser.Model;
using NzbDrone.Core.ThingiProvider;
using NzbDrone.Core.Tv;
namespace NzbDrone.Core.NetImport
{
public interface INetImport : IProvider
{
string Link { get; }
bool Enabled { get; }
IList<Movie> Fetch();
}
}