@omnia/fx-models
Version:
Provide Omnia Fx Models Stuffs.
19 lines (18 loc) • 720 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.EnterprisePropertyToPropertySettingsMap = exports.PropertySetting = void 0;
class PropertySetting {
constructor() {
}
}
exports.PropertySetting = PropertySetting;
class EnterprisePropertyToPropertySettingsMap {
constructor(propDefinitionCtor, enterprisePropertyDataTypeId, propSettingCtor) {
this.enterprisePropertyDataTypeId = enterprisePropertyDataTypeId;
this.propertyDefintionId = new propDefinitionCtor().id;
if (propSettingCtor) {
this.propertySettings = propSettingCtor;
}
}
}
exports.EnterprisePropertyToPropertySettingsMap = EnterprisePropertyToPropertySettingsMap;