@omnia/fx-models
Version:
Provide Omnia Fx Models Stuffs.
15 lines (14 loc) • 426 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.TagsPropertyValue = void 0;
const PropertyValue_1 = require("../PropertyValue");
class TagsPropertyValue extends PropertyValue_1.PropertyValue {
constructor(tags) {
super();
this.tags = tags;
}
isEmpty() {
return !this.tags || this.tags.length == 0;
}
}
exports.TagsPropertyValue = TagsPropertyValue;