mirror of
https://github.com/bitwarden/browser
synced 2025-12-16 08:13:42 +00:00
18 lines
345 B
TypeScript
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;
|
|
}
|
|
}
|