mirror of
https://github.com/lidarr/Lidarr
synced 2025-01-01 04:25:55 +00:00
12 lines
No EOL
254 B
C#
12 lines
No EOL
254 B
C#
using System.Linq;
|
|
using NzbDrone.Core.Repository;
|
|
|
|
namespace NzbDrone.Core.Providers
|
|
{
|
|
public interface ISeriesProvider
|
|
{
|
|
IQueryable<Series> GetSeries();
|
|
Series GetSeries(int tvdbId);
|
|
void SyncSeriesWithDisk();
|
|
}
|
|
} |