This commit is contained in:
Simon Martens
2025-03-05 16:41:39 +01:00
commit e19fd47c17
88 changed files with 9765 additions and 0 deletions

22
xmlmodels/references.go Normal file
View File

@@ -0,0 +1,22 @@
package xmlmodels
type PersonDef struct {
Index int `xml:"index,attr"`
Name string `xml:"name,attr"`
Ref string `xml:"ref,attr"`
FirstName string `xml:"vorname,attr"`
LastName string `xml:"nachname,attr"`
Comment string `xml:"komm,attr"`
}
type LocationDef struct {
Index int `xml:"index,attr"`
Name string `xml:"name,attr"`
Ref string `xml:"ref,attr"`
}
type AppDef struct {
Index int `xml:"index,attr"`
Name string `xml:"name,attr"`
Category string `xml:"category,attr"`
}