Files
ueblueprint/js/entity/PathSymbolEntity.js
barsdeveloper 7704850cf6 Refactoring
2022-01-05 21:48:45 +01:00

17 lines
281 B
JavaScript
Executable File

import Entity from "./Entity"
export default class PathSymbolEntity extends Entity {
static attributes = {
value: String
}
getAttributes() {
return PathSymbolEntity.attributes
}
toString() {
return this.value
}
}