mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-15 21:06:20 -04:00
12 lines
294 B
C#
12 lines
294 B
C#
using System.Collections.Generic;
|
|
using NzbDrone.Core.Tv;
|
|
using NzbDrone.Core.Music;
|
|
|
|
namespace NzbDrone.Core.MetadataSource
|
|
{
|
|
public interface ISearchForNewSeries
|
|
{
|
|
List<Series> SearchForNewSeries(string title);
|
|
List<Artist> SearchForNewArtist(string title);
|
|
}
|
|
} |