Places, Agents, Serials, Entries

This commit is contained in:
Simon Martens
2025-02-08 15:24:13 +01:00
parent f4cbb037e0
commit cfce7a2dc7
32 changed files with 451342 additions and 154 deletions

15
xmlmodels/orte.go Normal file
View File

@@ -0,0 +1,15 @@
package xmlmodels
import "encoding/xml"
type Orte struct {
XMLName xml.Name `xml:"dataroot"`
Orte []Ort `xml:"Orte"`
}
type Ort struct {
ID string `xml:"ID"`
Name string `xml:"NAME"`
Fiktiv bool `xml:"FIKTIV"`
Anmerkungen string `xml:"Anmerkungen"`
}