mirror of
https://github.com/lidarr/lidarr.git
synced 2025-07-05 20:42:19 -07: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();
|
|
}
|
|
} |