xrm-mock
Version:
A fake implementation of the Xrm object model. Used for testing Dynamics 365 client-side scripts.
18 lines • 765 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.AppPropertiesMock = void 0;
var AppPropertiesMock = /** @class */ (function () {
function AppPropertiesMock(components) {
this.appId = components.appId;
this.displayName = components.displayName;
this.uniqueName = components.uniqueName;
this.url = components.url;
this.webResourceId = components.webResourceId;
this.webResourceName = components.webResourceName;
this.welcomePageId = components.welcomePageId;
this.welcomePageName = components.welcomePageName;
}
return AppPropertiesMock;
}());
exports.AppPropertiesMock = AppPropertiesMock;
//# sourceMappingURL=appproperties.mock.js.map