mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-09-17 17:14:18 +02:00
14 lines
273 B
C#
14 lines
273 B
C#
using NzbDrone.Core.ThingiProvider;
|
|
|
|
namespace NzbDrone.Core.NetImport
|
|
{
|
|
public interface INetImport : IProvider
|
|
{
|
|
bool Enabled { get; }
|
|
bool EnableAuto { get; }
|
|
|
|
NetImportType ListType { get; }
|
|
NetImportFetchResult Fetch();
|
|
}
|
|
}
|