mirror of
https://github.com/bitwarden/mobile
synced 2025-12-15 07:43:37 +00:00
* Update Size limits * Add new Api paths for direct upload of Cipher Attachments * Add Attachment upload to fileUploadService * Save with direct upload and fallback to legacy uplaod CipherID is required for direct upload to request an upload URL * Inform on when to remove legacy code * Test Attachment upload
12 lines
231 B
C#
12 lines
231 B
C#
using System;
|
|
|
|
namespace Bit.Core.Models.Request
|
|
{
|
|
public class AttachmentRequest
|
|
{
|
|
public string FileName { get; set; }
|
|
public string Key { get; set; }
|
|
public long FileSize { get; set; }
|
|
}
|
|
}
|