mirror of
https://github.com/barsdeveloper/ueblueprint.git
synced 2026-02-04 08:50:33 +08:00
28 lines
665 B
JavaScript
Executable File
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
|
|
}
|
|
}
|