mirror of
https://github.com/bitwarden/browser
synced 2025-12-19 09:43:23 +00:00
support for new attachment keys
This commit is contained in:
@@ -4,6 +4,7 @@ export class AttachmentData {
|
||||
id: string;
|
||||
url: string;
|
||||
fileName: string;
|
||||
key: string;
|
||||
size: number;
|
||||
sizeName: string;
|
||||
|
||||
@@ -14,6 +15,7 @@ export class AttachmentData {
|
||||
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