mirror of
https://github.com/Theodor-Springmann-Stiftung/lenz-web.git
synced 2025-10-29 01:05:32 +00:00
15 lines
270 B
Go
15 lines
270 B
Go
package xmlmodels
|
|
|
|
import "encoding/xml"
|
|
|
|
type Tradition struct {
|
|
XMLName xml.Name `xml:"letterTradition"`
|
|
Letter int `xml:"letter,attr"`
|
|
Apps []App `xml:"app"`
|
|
}
|
|
|
|
type App struct {
|
|
Reference int `xml:"ref,attr"`
|
|
Content string `xml:",innerxml"`
|
|
}
|