using Microsoft.SharePoint.Client; namespace SharepointToolbox.Services; public interface IOwnershipElevationService { Task ElevateAsync(ClientContext tenantAdminCtx, string siteUrl, string loginName, CancellationToken ct); }