mirror of
https://github.com/Sonarr/Sonarr
synced 2024-12-23 08:15:27 +00:00
12 lines
No EOL
258 B
C#
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();
|
|
}
|
|
} |