1
0
mirror of https://github.com/bitwarden/jslib synced 2025-12-21 02:33:37 +00:00
Files
jslib/src/models/response/attachmentResponse.ts
2018-01-20 14:12:18 -05:00

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;
}
}