13 lines
221 B
Go
13 lines
221 B
Go
|
package dtos
|
||
|
|
||
|
import "fmt"
|
||
|
|
||
|
type Gps struct {
|
||
|
Longitude float64 `json:"longitude"`
|
||
|
Latitude float64 `json:"latitude"`
|
||
|
}
|
||
|
|
||
|
func (gps Gps) ToLocation() string {
|
||
|
return fmt.Sprintf("%f,%f", gps.Latitude, gps.Longitude)
|
||
|
}
|