mirror of
https://github.com/Radarr/Radarr.git
synced 2026-04-23 22:25:14 -04:00
16 lines
367 B
C#
16 lines
367 B
C#
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();
|
|
}
|
|
} |