kentico-cloud-delivery
Version:
Official Kentico Cloud Delivery SDK
17 lines • 377 B
JavaScript
var ElementOption = /** @class */ (function () {
function ElementOption(
/**
* Name of the option
*/
name,
/**
* Value of the option
*/
codename) {
this.name = name;
this.codename = codename;
}
return ElementOption;
}());
export { ElementOption };
//# sourceMappingURL=element-option.class.js.map