Files
ueblueprint/js/entity/PathSymbolEntity.js
2022-09-04 14:33:22 +02:00

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
}
}