mirror of
https://github.com/Theodor-Springmann-Stiftung/musenalm.git
synced 2025-10-29 09:15:33 +00:00
Places, Agents, Serials, Entries
This commit is contained in:
15
xmlmodels/orte.go
Normal file
15
xmlmodels/orte.go
Normal 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"`
|
||||
}
|
||||
Reference in New Issue
Block a user