Files
ueblueprint/js/entity/VariableReferenceEntity.js
2023-01-02 00:22:50 +01:00

28 lines
665 B
JavaScript
Executable File

import IEntity from "./IEntity"
import GuidEntity from "./GuidEntity"
export default class VariableReferenceEntity extends IEntity {
static attributes = {
MemberScope: {
value: "",
showDefault: false,
},
MemberName: "",
MemberGuid: {
type: GuidEntity,
},
bSelfContext: {
value: false,
showDefault: false,
},
}
constructor(values) {
super(values)
/** @type {String} */ this.MemberName
/** @type {GuidEntity} */ this.GuidEntity
/** @type {Boolean} */ this.bSelfContext
}
}