keanu-weblite/src/models/user.js

7 lines
179 B
JavaScript
Raw Normal View History

2020-11-09 10:26:56 +01:00
export default class User {
constructor(server, username, password) {
this.server = server;
this.username = username;
this.password = password;
}
}