mirror of
https://github.com/fergalmoran/podnoms.git
synced 2026-01-09 01:55:19 +00:00
9 lines
316 B
C#
9 lines
316 B
C#
using System;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace PodNoms.Api.Services.Storage {
|
|
public interface IFileUploader {
|
|
Task<string> UploadFile(string sourceFile, string containerName, string destinationFile,
|
|
string contentType, Action<int, long> progressCallback);
|
|
}
|
|
} |