1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-16 08:13:42 +00:00
Files
browser/src/models/view/secureNoteView.ts
2018-01-24 16:58:34 -05:00

18 lines
345 B
TypeScript

import { SecureNoteType } from '../../enums/secureNoteType';
import { View } from './view';
import { SecureNote } from '../domain/secureNote';
export class SecureNoteView implements View {
type: SecureNoteType;
constructor(n: SecureNote) {
this.type = n.type;
}
get subTitle(): string {
return null;
}
}