forked from ddrilling/AsbCloudServer
14 lines
360 B
C#
14 lines
360 B
C#
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);
|
|
}
|
|
} |