mirror of
https://github.com/bitwarden/browser.git
synced 2024-11-27 12:36:14 +01:00
27 lines
581 B
TypeScript
27 lines
581 B
TypeScript
import { SecureNoteType } from 'jslib/enums/secureNoteType';
|
|
|
|
import { SecureNoteView } from 'jslib/models/view/secureNoteView';
|
|
|
|
export class SecureNote {
|
|
static template(): SecureNote {
|
|
const req = new SecureNote();
|
|
req.type = SecureNoteType.Generic;
|
|
return req;
|
|
}
|
|
|
|
static toView(req: SecureNote, view = new SecureNoteView()) {
|
|
view.type = req.type;
|
|
return view;
|
|
}
|
|
|
|
type: SecureNoteType;
|
|
|
|
constructor(o?: SecureNoteView) {
|
|
if (o == null) {
|
|
return;
|
|
}
|
|
|
|
this.type = o.type;
|
|
}
|
|
}
|