1
0
Fork 0
mirror of https://github.com/Sonarr/Sonarr synced 2024-12-23 08:15:27 +00:00
Sonarr/NzbDrone.Core/Controllers/ISeriesController.cs
2010-09-24 00:14:42 -07:00

12 lines
No EOL
258 B
C#

using System.Linq;
using NzbDrone.Core.Repository;
namespace NzbDrone.Core.Controllers
{
public interface ISeriesController
{
IQueryable<Series> GetSeries();
Series GetSeries(int tvdbId);
void SyncSeriesWithDisk();
}
}