Removed IRssSyncProvider & IBacklogProvider

This commit is contained in:
Mark McDowall 2011-04-08 17:04:50 -07:00
commit 29690d9b6f
4 changed files with 24 additions and 23 deletions

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