akf-forum/routes/api/ApiResponse.js

7 lines
151 B
JavaScript
Raw Normal View History

2022-04-03 22:03:47 +03:00
class ApiResponse {
constructor(status, result) {
this.status = status;
this.result = result;
}
}
module.exports = ApiResponse;