This commit is contained in:
2025-06-29 22:05:43 +09:00
parent f6ddfb7243
commit d2018c0143
5 changed files with 4 additions and 4 deletions

View File

@@ -0,0 +1,11 @@
using System.Threading.Tasks;
namespace BokBonCheck
{
public interface ILibrarySearcher
{
string SiteName { get; }
string SiteUrl { get; }
Task<BookSearchResult> SearchAsync(string searchTerm);
}
}