8 lines
219 B
Go
Raw Normal View History

2019-06-03 09:32:43 +00:00
package arn
// CharacterAttribute describes one attribute of a character, e.g. height or age.
type CharacterAttribute struct {
Name string `json:"name" editable:"true"`
Value string `json:"value" editable:"true"`
}