Files
ueblueprint/js/entity/PathSymbolEntity.js
barsdeveloper a0eeca11d1 Various fixes
2022-03-28 23:04:24 +02:00

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