CS-Coursework/website/api/user.js
2022-11-18 11:33:25 +00:00

9 lines
185 B
JavaScript

class User {
constructor() {
this.username = "not logged in";
this.password = "there";
this.userId = 0;
this.tests;
this.leaderboard;
}
}