AuthorBuddy/Services/IFileScannerService.cs
2026-05-14 12:31:35 +02:00

6 lines
171 B
C#

namespace AuthorBuddy.Web.Services;
public interface IFileScannerService
{
Task ScanProjectFolderAsync(int projectId, string rootPath, IProgress<string> progress);
}