Files
Prowlarr-Prowlarr/src/NzbDrone.Core/NetImport/INetImport.cs
2020-01-15 23:12:39 -05:00

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();
}
}