mirror of
https://github.com/barsdeveloper/ueblueprint.git
synced 2026-02-04 08:50:33 +08:00
18 lines
456 B
JavaScript
Executable File
18 lines
456 B
JavaScript
Executable File
import GuidEntity from "./GuidEntity"
|
|
import IEntity from "./IEntity"
|
|
import PathSymbolEntity from "./PathSymbolEntity"
|
|
|
|
export default class PinReferenceEntity extends IEntity {
|
|
|
|
static attributes = {
|
|
objectName: PathSymbolEntity,
|
|
pinGuid: GuidEntity,
|
|
}
|
|
|
|
constructor(values) {
|
|
super(values)
|
|
/** @type {PathSymbolEntity} */ this.objectName
|
|
/** @type {GuidEntity} */ this.pinGuid
|
|
}
|
|
}
|