shepa
Version:
Shepa is a online payment gateway
24 lines • 609 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
class UserInfo {
constructor(email, mobile, description, callback) {
this._email = email;
this._mobile = mobile;
this._description = description;
this._callback = callback;
}
get email() {
return this._email;
}
get mobile() {
return this._mobile;
}
get description() {
return this._description;
}
get callback() {
return this._callback;
}
}
exports.default = UserInfo;
//# sourceMappingURL=UserInfo.js.map