mirror of
https://github.com/azaion/gps-denied-desktop.git
synced 2026-04-22 22:56:35 +00:00
abc26d5c20
docs -> _docs
15 lines
297 B
Python
15 lines
297 B
Python
from pydantic import BaseModel
|
|
from ..core.gps_point import GPSPoint
|
|
|
|
|
|
class SearchSession(BaseModel):
|
|
session_id: str
|
|
flight_id: str
|
|
frame_id: int
|
|
center_gps: GPSPoint
|
|
current_grid_size: int = 1
|
|
max_grid_size: int = 25
|
|
found: bool = False
|
|
exhausted: bool = False
|
|
|