7 lines
107 B
JavaScript
7 lines
107 B
JavaScript
|
class User {
|
||
|
constructor() {
|
||
|
this.username;
|
||
|
this.password;
|
||
|
this.userId;
|
||
|
}
|
||
|
}
|