PathSymbol => PathSymbolEntity

This commit is contained in:
barsdeveloper
2021-11-23 20:05:36 +01:00
parent ffe50c2be5
commit a224903f35
8 changed files with 773 additions and 746 deletions

View File

@@ -0,0 +1,16 @@
import Entity from "./Entity"
export default class PathSymbolEntity extends Entity {
static attributes = {
value: String
}
getAttributes() {
return PathSymbolEntity.attributes
}
toString() {
return this.value
}
}