Radarr/src/NzbDrone.Core/ImportLists/IImportList.cs

16 lines
337 B
C#

using System;
using NzbDrone.Core.ThingiProvider;
namespace NzbDrone.Core.ImportLists
{
public interface IImportList : IProvider
{
bool Enabled { get; }
bool EnableAuto { get; }
ImportListType ListType { get; }
TimeSpan MinRefreshInterval { get; }
ImportListFetchResult Fetch();
}
}