using System.Threading; using System.Threading.Tasks; namespace AsbCloudApp.Services { public interface IFileShareService { Task PublishFileToCloudAsync(string filePath, string originalName, CancellationToken token); Task DeleteFileAsync(string sharedFileId, CancellationToken token = default); } }