deprecated-oc-search/models/coordinates.go

8 lines
176 B
Go
Raw Normal View History

2023-08-26 22:04:56 +02:00
package models
// Coordinates represents WGS84 geographical coordiantes
type Coordinates struct {
Latitude float32 `json:"latitude"`
Longitude float32 `json:"longitude"`
}