mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-12-26 16:26:38 +01:00
10 lines
214 B
C#
10 lines
214 B
C#
using System.Collections.Generic;
|
|
using NzbDrone.Core.Tv;
|
|
|
|
namespace NzbDrone.Core.MetadataSource
|
|
{
|
|
public interface IProvideEpisodeInfo
|
|
{
|
|
IList<Episode> GetEpisodeInfo(int tvDbSeriesId);
|
|
}
|
|
} |