mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-21 05:53:33 -07:00
Removed IRssSyncProvider & IBacklogProvider
This commit is contained in:
parent
0d95302aee
commit
29690d9b6f
4 changed files with 24 additions and 23 deletions
21
NzbDrone.Core/Providers/BacklogProvider.cs
Normal file
21
NzbDrone.Core/Providers/BacklogProvider.cs
Normal file
|
@ -0,0 +1,21 @@
|
|||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
|
||||
namespace NzbDrone.Core.Providers
|
||||
{
|
||||
public class BacklogProvider
|
||||
{
|
||||
//Will provide Backlog Search functionality
|
||||
|
||||
public virtual bool StartSearch()
|
||||
{
|
||||
throw new NotImplementedException();
|
||||
}
|
||||
public virtual bool StartSearch(int seriesId)
|
||||
{
|
||||
throw new NotImplementedException();
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue