Add accessibility modifiers

pull/73/head
MillenniumEarl 2021-02-25 17:14:04 +01:00
parent 40428cb658
commit 10b1685d8d
1 changed files with 3 additions and 3 deletions

View File

@ -10,15 +10,15 @@ export default class Credentials {
/** /**
* Username * Username
*/ */
username: string; public username: string;
/** /**
* Password of the user. * Password of the user.
*/ */
password: string; public password: string;
/** /**
* One time token used during login. * One time token used during login.
*/ */
token: string = null; public token: string = null;
constructor(username: string, password: string) { constructor(username: string, password: string) {
this.username = username; this.username = username;