mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-20 21:54:25 -04:00
acb3470988
Signed-off-by: Robin Dadswell <robin@dadswell.email>
10 lines
189 B
C#
10 lines
189 B
C#
using System.Collections.Generic;
|
|
|
|
namespace NzbDrone.Core.MetadataSource
|
|
{
|
|
public interface ISearchForNewEntity
|
|
{
|
|
List<object> SearchForNewEntity(string title);
|
|
}
|
|
}
|