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