12 lines
359 B
C#
12 lines
359 B
C#
using Microsoft.SharePoint.Client;
|
|
using SharepointToolbox.Web.Core.Models;
|
|
|
|
namespace SharepointToolbox.Web.Services;
|
|
|
|
public interface IFileTransferService
|
|
{
|
|
Task<BulkOperationSummary<string>> TransferAsync(
|
|
ClientContext sourceCtx, ClientContext destCtx,
|
|
TransferJob job, IProgress<OperationProgress> progress, CancellationToken ct);
|
|
}
|