Files
ueblueprint/js/entity/LocalizedTextEntity.js
barsdeveloper a34be2351e Grammar fixed
2021-10-22 18:44:44 +02:00

15 lines
257 B
JavaScript

import Entity from "./Entity"
export default class LocalizedTextEntity extends Entity {
static attributes = {
namespace: "",
key: "",
value: ""
}
getAttributes() {
return LocalizedTextEntity.attributes
}
}