10 lines
325 B
C#
10 lines
325 B
C#
using CodeContextGenerator.Models;
|
|
|
|
namespace CodeContextGenerator.Interfaces;
|
|
|
|
public interface IFileScannerService
|
|
{
|
|
Task BuildDirectoryTreeAsync(string path, FileItem parentItem, IProgress<int> progress = null, CancellationToken cancellationToken = default);
|
|
List<string> GetSelectedFiles(FileItem rootItem);
|
|
}
|