@sitecore/sc-contenthub-webclient-sdk
Version:
Sitecore Content Hub WebClient SDK.
20 lines • 418 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.Rule = void 0;
/**
* {@inheritDoc}
*/
class Rule {
get identifier() {
return this._identifier;
}
constructor(init) {
this._identifier = null;
Object.assign(this, init);
}
setIdentifier(guid) {
this._identifier = guid;
}
}
exports.Rule = Rule;
//# sourceMappingURL=rule.js.map