You've already forked Sonarr
mirror of
https://github.com/Sonarr/Sonarr.git
synced 2025-11-06 09:19:38 +02:00
Removed IRssSyncProvider & IBacklogProvider
This commit is contained in:
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();
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1,15 +0,0 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
|
||||
namespace NzbDrone.Core.Providers
|
||||
{
|
||||
public interface IBacklogProvider
|
||||
{
|
||||
//Will provide Backlog Search functionality
|
||||
|
||||
bool StartSearch();
|
||||
bool StartSearch(int seriesId);
|
||||
}
|
||||
}
|
||||
@@ -5,14 +5,9 @@ using System.Text;
|
||||
|
||||
namespace NzbDrone.Core.Providers
|
||||
{
|
||||
public interface IRssSyncProvider
|
||||
public class RssSyncProvider
|
||||
{
|
||||
void Begin();
|
||||
}
|
||||
|
||||
public class RssSyncProvider : IRssSyncProvider
|
||||
{
|
||||
public void Begin()
|
||||
public virtual void Begin()
|
||||
{
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user