1
0
Fork 0
mirror of https://github.com/Radarr/Radarr synced 2024-12-28 10:51:48 +00:00
Radarr/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 02:44:01 +00:00
public virtual bool StartSearch(int seriesId)
{
throw new NotImplementedException();
}
}
}