mirror of
https://github.com/barsdeveloper/ueblueprint.git
synced 2026-02-12 07:34:42 +08:00
17 lines
262 B
JavaScript
Executable File
17 lines
262 B
JavaScript
Executable File
import IEntity from "./IEntity"
|
|
|
|
export default class PathSymbolEntity extends IEntity {
|
|
|
|
static attributes = {
|
|
value: String,
|
|
}
|
|
|
|
valueOf() {
|
|
return this.value
|
|
}
|
|
|
|
toString() {
|
|
return this.value
|
|
}
|
|
}
|