6 lines
171 B
C#
6 lines
171 B
C#
namespace AuthorBuddy.Web.Services;
|
|
|
|
public interface IFileScannerService
|
|
{
|
|
Task ScanProjectFolderAsync(int projectId, string rootPath, IProgress<string> progress);
|
|
}
|