mirror of
https://github.com/barsdeveloper/ueblueprint.git
synced 2026-02-04 08:50:33 +08:00
15 lines
297 B
JavaScript
Executable File
15 lines
297 B
JavaScript
Executable File
import Entity from "./Entity"
|
|
import Guid from "./primitive/Guid"
|
|
|
|
export default class PinReferenceEntity extends Entity {
|
|
|
|
static attributes = {
|
|
objectName: String,
|
|
pinGuid: Guid
|
|
}
|
|
|
|
getAttributes() {
|
|
return PinReferenceEntity.attributes
|
|
}
|
|
}
|