CS-Coursework/website/api/user.js

10 lines
558 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-17 11:48:12 +00:00
this.tests;
2022-11-18 11:33:25 +00:00
this.leaderboard;
2022-11-18 12:27:54 +00:00
this.nextTest = `satisfy powerful pleasant bells disastrous mean kited is gusted romantic past taste immolate productive leak close show crabby awake handsails finicky betray long-term incompetent wander show manage toys convey hop constitute number send like off ice aboard well-made vast vacuous tramp seed force divergent flower porter fire untidy soggy fetch`;
2022-11-11 13:04:13 +00:00
}
}