001dbefbcf
because it becomes hard to remember where you used them and where not
9 lines
136 B
JavaScript
9 lines
136 B
JavaScript
export class User {
|
|
constructor(userId) {
|
|
this._userId = userId;
|
|
}
|
|
|
|
get id() {
|
|
return this._userId;
|
|
}
|
|
}
|