mirror of
https://github.com/barsdeveloper/ueblueprint.git
synced 2026-02-13 16:44:49 +08:00
15 lines
225 B
JavaScript
Executable File
15 lines
225 B
JavaScript
Executable File
// @ts-check
|
|
|
|
import IEntity from "./IEntity"
|
|
|
|
export default class PathSymbolEntity extends IEntity {
|
|
|
|
static attributes = {
|
|
value: String,
|
|
}
|
|
|
|
toString() {
|
|
return this.value
|
|
}
|
|
}
|