mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-09-27 04:21:27 +02:00
updates and compile-able
This commit is contained in:
16
src/NzbDrone.Core/NetImport/INetImport.cs
Normal file
16
src/NzbDrone.Core/NetImport/INetImport.cs
Normal 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();
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user