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