package res import ( "time" "github.com/google/uuid" ) type TowerResponse struct { ID uuid.UUID `json:"id"` DeviceCode *string `json:"device_code,omitempty"` // Make nullable TowerCode *string `json:"tower_code"` Longitude float64 `json:"longitude"` Latitude float64 `json:"latitude"` Address string `json:"address"` ImageURL string `json:"image_url"` ExternalTower *bool `json:"external_tower,omitempty"` // Make nullable CreatedAt time.Time `json:"created_at"` UpdatedAt time.Time `json:"updated_at"` }