1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2024-10-31 16:02:29 +01:00
Sonarr/NzbDrone.Core/Controllers/ISeriesController.cs

12 lines
258 B
C#
Raw Normal View History

2010-09-23 05:19:47 +02:00
using System.Linq;
using NzbDrone.Core.Repository;
namespace NzbDrone.Core.Controllers
{
public interface ISeriesController
{
IQueryable<Series> GetSeries();
2010-09-24 09:14:42 +02:00
Series GetSeries(int tvdbId);
2010-09-23 05:19:47 +02:00
void SyncSeriesWithDisk();
}
}