mirror of https://github.com/lidarr/Lidarr
9 lines
170 B
C#
9 lines
170 B
C#
|
using NzbDrone.Core.Tv;
|
|||
|
|
|||
|
namespace NzbDrone.Core.MetadataSource
|
|||
|
{
|
|||
|
public interface IProvideSeriesInfo
|
|||
|
{
|
|||
|
Series GetSeriesInfo(int tvDbSeriesId);
|
|||
|
}
|
|||
|
}
|