UNPKG

@omnia/fx-models

Version:
15 lines (14 loc) 497 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.MultilingualTextPropertyValue = void 0; const PropertyValue_1 = require("../PropertyValue"); class MultilingualTextPropertyValue extends PropertyValue_1.PropertyValue { constructor(multilingualText) { super(); this.multilingualText = multilingualText; } isEmpty() { return !this.multilingualText; } } exports.MultilingualTextPropertyValue = MultilingualTextPropertyValue;