1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2024-10-31 07:52:37 +01:00
Sonarr/NzbDrone.Core/Providers/BacklogProvider.cs

19 lines
388 B
C#
Raw Normal View History

using System;
namespace NzbDrone.Core.Providers
{
public class BacklogProvider
{
//Will provide Backlog Search functionality
public virtual bool StartSearch()
{
throw new NotImplementedException();
}
2011-04-10 04:44:01 +02:00
public virtual bool StartSearch(int seriesId)
{
throw new NotImplementedException();
}
}
}