using Microsoft.SharePoint.Client; using SharepointToolbox.Core.Models; namespace SharepointToolbox.Services; public interface IFolderStructureService { Task> CreateFoldersAsync( ClientContext ctx, string libraryTitle, IReadOnlyList rows, IProgress progress, CancellationToken ct); }