Change property visibility.

This commit is contained in:
2018-06-05 08:34:28 +02:00
parent 406ae3aae0
commit 4aea098e3d
9 changed files with 38 additions and 37 deletions

View File

@ -1,6 +1,6 @@
// vim: set tw=80 ts=2 sw=2 sts=2:
export class Login {
email: string;
password: string;
public email: string;
public password: string;
}

View File

@ -1,6 +1,6 @@
// vim: set tw=80 ts=2 sw=2 sts=2 :
export class Token {
access_token: string;
refresh_token: string;
public access_token: string;
public refresh_token: string;
}