mirror of
https://github.com/bitwarden/mobile
synced 2025-12-25 20:53:25 +00:00
13 lines
339 B
C#
13 lines
339 B
C#
using System;
|
|
using System.Threading;
|
|
using System.Threading.Tasks;
|
|
using Bit.Core.Models.Domain;
|
|
|
|
namespace Bit.Core.Abstractions
|
|
{
|
|
public interface IAzureFileUploadService
|
|
{
|
|
Task Upload(string uri, EncByteArray data, Func<CancellationToken, Task<string>> renewalCallback, CancellationToken cancellationToken);
|
|
}
|
|
}
|