6 lines
76 B
JavaScript
6 lines
76 B
JavaScript
export class GetUserByIdQuery {
|
|
constructor(id) {
|
|
this.id = id;
|
|
}
|
|
}
|