wnjk
Version:
两只蜗牛通用微服务脚本
15 lines (14 loc) • 449 B
JavaScript
define(["require", "exports"], function (require, exports) {
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
var WebCommand = (function () {
function WebCommand() {
this.methodName = "";
this.source = "";
this.isContainerMsg = false;
this.content = "";
}
return WebCommand;
}());
exports.default = WebCommand;
});