go-types/pkg/upstreamApi/knowledgebaseStations.go

14 lines
323 B
Go
Raw Normal View History

2024-06-28 15:05:31 +01:00
package upstreamApi
type StationList struct {
Stations []Station `xml:"Station"`
}
type Station struct {
CrsCode string `xml:"CrsCode"`
Name string `xml:"Name"`
Longitude float64 `xml:"Longitude"`
Latitude float64 `xml:"Latitude"`
StationOperator string `xml:"StationOperator"`
}