using System.Threading;
using System.Threading.Tasks;

namespace AsbCloudApp.Services
{
    public interface IFileShareService
    {
        Task<string> PublishFileToCloudAsync(string filePath, string originalName,
            CancellationToken token);

        Task DeleteFileAsync(string sharedFileId,
            CancellationToken token = default);
    }
}