@omnia/fx-models
Version:
Provide Omnia Fx Models Stuffs.
18 lines (17 loc) • 939 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.UserTypePropertyDefinition = exports.userTypePropertyDefinitionId = exports.UserTypeDisplaySettings = void 0;
const models_1 = require("@omnia/fx-models/internal-do-not-import-from-here/shared/models");
const PropertyDefinition_1 = require("../PropertyDefinition");
class UserTypeDisplaySettings extends PropertyDefinition_1.PropertyDisplaySettingsBase {
}
exports.UserTypeDisplaySettings = UserTypeDisplaySettings;
exports.userTypePropertyDefinitionId = new models_1.Guid("33bbf1c7-7414-4e2b-9739-4dd799eba72a");
class UserTypePropertyDefinition extends PropertyDefinition_1.PropertyDefinition {
constructor() {
super(...arguments);
this.id = exports.userTypePropertyDefinitionId;
this.typeName = "$Localize:Omnia.Ux.Properties.Definitions.UserType;";
}
}
exports.UserTypePropertyDefinition = UserTypePropertyDefinition;