11 lines
234 B
C#
11 lines
234 B
C#
using System.Threading.Tasks;
|
|
|
|
namespace BokBonCheck
|
|
{
|
|
public interface ILibrarySearcher
|
|
{
|
|
string SiteName { get; }
|
|
string SiteUrl { get; }
|
|
Task<BookSearchResult> SearchAsync(string searchTerm);
|
|
}
|
|
} |