CS-Coursework/website/api/user.js

8 lines
159 B
JavaScript

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