Add accessibility modifiers
parent
40428cb658
commit
10b1685d8d
|
@ -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;
|
||||||
|
|
Loading…
Reference in New Issue