mirror of
https://github.com/Lidarr/Lidarr
synced 2026-02-27 00:52:13 +01: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);
|
|
}
|
|
} |