mirror of
https://github.com/Akif9748/akf-forum.git
synced 2024-11-01 03:25:04 +03:00
7 lines
151 B
JavaScript
7 lines
151 B
JavaScript
|
class ApiResponse {
|
||
|
constructor(status, result) {
|
||
|
this.status = status;
|
||
|
this.result = result;
|
||
|
}
|
||
|
}
|
||
|
module.exports = ApiResponse;
|