class User { constructor(baseUrl, username, password) { this.baseUrl = baseUrl; this.username = username; this.password = password; } } export default User;