mirror of
https://github.com/barsdeveloper/ueblueprint.git
synced 2026-02-04 08:50:33 +08:00
21 lines
499 B
JavaScript
Executable File
21 lines
499 B
JavaScript
Executable File
// @ts-check
|
|
|
|
import IEntity from "./IEntity"
|
|
import GuidEntity from "./GuidEntity"
|
|
|
|
export default class VariableReferenceEntity extends IEntity {
|
|
|
|
static attributes = {
|
|
MemberName: String,
|
|
MemberGuid: GuidEntity,
|
|
bSelfContext: false,
|
|
}
|
|
|
|
constructor(options = {}) {
|
|
super(options)
|
|
/** @type {String} */ this.MemberName
|
|
/** @type {GuidEntity} */ this.MemberGuid
|
|
/** @type {Boolean} */ this.bSelfContext
|
|
}
|
|
}
|