1
0
mirror of https://github.com/bitwarden/jslib synced 2025-12-21 10:43:23 +00:00

init view properties

This commit is contained in:
Kyle Spearrin
2019-01-25 09:30:21 -05:00
parent 62b074ae22
commit b01709240e
13 changed files with 73 additions and 69 deletions

View File

@@ -4,11 +4,11 @@ import { View } from './view';
import { Login } from '../domain/login';
export class LoginView implements View {
username: string;
password: string;
passwordRevisionDate?: Date;
totp: string;
uris: LoginUriView[];
username: string = null;
password: string = null;
passwordRevisionDate?: Date = null;
totp: string = null;
uris: LoginUriView[] = null;
constructor(l?: Login) {
if (!l) {