@calf/dotypay
Version:
Dotypay module of Calf framework.
26 lines (25 loc) • 627 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.CommonOperation = void 0;
/**
* Common operation
* @description
*/
var CommonOperation = /** @class */ (function () {
/**
* Constructor
* @param config
* @param service
* @param data
*/
function CommonOperation(config, service, data) {
// Assign config
this.config = config;
// Assign service
this.service = service;
// Assign data
this.data = data;
}
return CommonOperation;
}());
exports.CommonOperation = CommonOperation;