using System; using System.Collections.Generic; using NzbDrone.Core.Tv; namespace NzbDrone.Core.MetadataSource { public interface IProvideSeriesInfo { Tuple> GetSeriesInfo(int tvDbSeriesId); } }