mirror of
https://github.com/bitwarden/browser
synced 2026-02-15 07:54:55 +00:00
Build with the ability to create attachments without keys
This commit is contained in:
@@ -6,6 +6,7 @@ export class AttachmentResponse {
|
||||
size: string;
|
||||
sizeName: string;
|
||||
url: string;
|
||||
key: any;
|
||||
|
||||
constructor(o: AttachmentView) {
|
||||
this.id = o.id;
|
||||
@@ -13,5 +14,6 @@ export class AttachmentResponse {
|
||||
this.size = o.size;
|
||||
this.sizeName = o.sizeName;
|
||||
this.url = o.url;
|
||||
this.key = o.key;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user