import { AttachmentView } from "@bitwarden/common/vault/models/view/attachment.view"; export class AttachmentResponse { id: string; fileName: string; size: string; sizeName: string; url: string; constructor(o: AttachmentView) { this.id = o.id; this.fileName = o.fileName; this.size = o.size; this.sizeName = o.sizeName; this.url = o.url; } }