CS-Coursework/website/api/user.js

7 lines
139 B
JavaScript
Raw Normal View History

2022-11-11 13:04:13 +00:00
class User {
constructor() {
this.username = "not logged in";
this.password = "there";
this.userId = 0;
2022-11-11 13:04:13 +00:00
}
}