This repository has been archived on 2022-08-19. You can view files and clone it, but cannot push or open issues or pull requests.
hydrogen-web/src/matrix/User.js

10 lines
144 B
JavaScript
Raw Normal View History

export default class User {
constructor(userId) {
this._userId = userId;
}
get id() {
return this._userId;
}
}