mirror of
https://github.com/lidarr/Lidarr
synced 2024-12-30 19:45:57 +00:00
10 lines
No EOL
214 B
C#
10 lines
No EOL
214 B
C#
using System.Collections.Generic;
|
|
using NzbDrone.Core.Tv;
|
|
|
|
namespace NzbDrone.Core.MetadataSource
|
|
{
|
|
public interface IProvideEpisodeInfo
|
|
{
|
|
IList<Episode> GetEpisodeInfo(int tvDbSeriesId);
|
|
}
|
|
} |