1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-11-04 10:02:40 +01:00
Radarr/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();
}
}