광주시교육청통합도서관 추가

This commit is contained in:
2025-06-29 22:04:04 +09:00
parent 27f48422ed
commit f6ddfb7243
5 changed files with 487 additions and 14 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);
}
}