10 lines
144 B
JavaScript
10 lines
144 B
JavaScript
|
export default class User {
|
||
|
constructor(userId) {
|
||
|
this._userId = userId;
|
||
|
}
|
||
|
|
||
|
get id() {
|
||
|
return this._userId;
|
||
|
}
|
||
|
}
|