mirror of
https://github.com/barsdeveloper/ueblueprint.git
synced 2026-02-04 08:50:33 +08:00
15 lines
257 B
JavaScript
15 lines
257 B
JavaScript
import Entity from "./Entity"
|
|
|
|
export default class LocalizedTextEntity extends Entity {
|
|
|
|
static attributes = {
|
|
namespace: "",
|
|
key: "",
|
|
value: ""
|
|
}
|
|
|
|
getAttributes() {
|
|
return LocalizedTextEntity.attributes
|
|
}
|
|
|
|
} |