mirror of
https://github.com/bitwarden/browser
synced 2025-12-16 16:23:44 +00:00
support for new attachment keys
This commit is contained in:
@@ -2,6 +2,7 @@ export class AttachmentResponse {
|
||||
id: string;
|
||||
url: string;
|
||||
fileName: string;
|
||||
key: string;
|
||||
size: number;
|
||||
sizeName: string;
|
||||
|
||||
@@ -9,6 +10,7 @@ export class AttachmentResponse {
|
||||
this.id = response.Id;
|
||||
this.url = response.Url;
|
||||
this.fileName = response.FileName;
|
||||
this.key = response.Key;
|
||||
this.size = response.Size;
|
||||
this.sizeName = response.SizeName;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user