GIF89a php
Current File : /home/viralhoga/app_viralhoga/src/utils/ApiRespinseHandler.js
class ApiResponse {
    constructor(statusCode, message, data = null) {
        this.statusCode = statusCode;
        this.message = message;
        this.success = true;
        this.data = data;
    }
}

export default ApiResponse