mirror of
https://github.com/Radarr/Radarr
synced 2025-12-06 08:28:50 +01: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();
|
|
}
|
|
} |