mirror of
https://github.com/bitwarden/mobile
synced 2025-12-16 00:03:22 +00:00
* Add direct upload api endpoints * Create azure upload service * Update max file size * Update send file upload test * Move internationalization string to correct document * Allow for one shot blob uploads * Remove unused helper * Use FileUploadService Fallback to legacy method on old server implementations.
10 lines
299 B
C#
10 lines
299 B
C#
using System.Threading.Tasks;
|
|
using Bit.Core.Models.Domain;
|
|
using Bit.Core.Models.Response;
|
|
|
|
namespace Bit.Core.Abstractions {
|
|
public interface IFileUploadService {
|
|
Task UploadSendFileAsync(SendFileUploadDataResponse uploadData, CipherString fileName, byte[] encryptedFileData);
|
|
}
|
|
}
|