mirror of
https://github.com/barsdeveloper/ueblueprint.git
synced 2026-02-04 08:50:33 +08:00
20 lines
479 B
JavaScript
Executable File
20 lines
479 B
JavaScript
Executable File
// @ts-check
|
|
|
|
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(options = {}) {
|
|
super(options)
|
|
/** @type {PathSymbolEntity} */ this.objectName
|
|
/** @type {GuidEntity} */ this.pinGuid
|
|
}
|
|
}
|