mirror of
https://github.com/Sonarr/Sonarr
synced 2024-12-27 02:07:41 +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);
|
|
}
|
|
} |