1
0
Fork 0
mirror of https://github.com/lidarr/Lidarr synced 2024-12-29 11:05:44 +00:00
Lidarr/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();
}
}
}