mirror of
https://github.com/bitwarden/jslib
synced 2025-12-21 02:33:37 +00:00
16 lines
356 B
TypeScript
16 lines
356 B
TypeScript
export class AttachmentResponse {
|
|
id: string;
|
|
url: string;
|
|
fileName: string;
|
|
size: number;
|
|
sizeName: string;
|
|
|
|
constructor(response: any) {
|
|
this.id = response.Id;
|
|
this.url = response.Url;
|
|
this.fileName = response.FileName;
|
|
this.size = response.Size;
|
|
this.sizeName = response.SizeName;
|
|
}
|
|
}
|