Initial commit

This commit is contained in:
N-Pex 2020-11-09 10:26:56 +01:00
parent 60df431f80
commit fd332bda79
22 changed files with 13206 additions and 0 deletions

7
src/models/user.js Normal file
View file

@ -0,0 +1,7 @@
export default class User {
constructor(server, username, password) {
this.server = server;
this.username = username;
this.password = password;
}
}