mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-25 22:36:59 -04:00
8547af9fae
Co-Authored-By: ta264 <ta264@users.noreply.github.com>
11 lines
216 B
C#
11 lines
216 B
C#
using System.Collections.Generic;
|
|
using NzbDrone.Core.Books;
|
|
|
|
namespace NzbDrone.Core.MetadataSource
|
|
{
|
|
public interface ISearchForNewAuthor
|
|
{
|
|
List<Author> SearchForNewAuthor(string title);
|
|
}
|
|
}
|