17 lines
346 B
Go
17 lines
346 B
Go
package res
|
|
|
|
import (
|
|
"time"
|
|
|
|
"github.com/google/uuid"
|
|
)
|
|
|
|
type FishboneResponse struct {
|
|
ID uuid.UUID `json:"id"`
|
|
DeviceName string `json:"device_name"`
|
|
TowerCode string `json:"tower_code"`
|
|
Longtitude float64 `json:"longtitude"`
|
|
Latitude float64 `json:"latitude"`
|
|
Address string `json:"address"`
|
|
CreatedAt time.Time `json:"created_at"`
|
|
} |