mirror of
https://github.com/azaion/gps-denied-onboard.git
synced 2026-04-22 22:26:38 +00:00
abc26d5c20
docs -> _docs
9 lines
142 B
Python
9 lines
142 B
Python
from pydantic import BaseModel
|
|
from .gps_point import GPSPoint
|
|
|
|
|
|
class Polygon(BaseModel):
|
|
north_west: GPSPoint
|
|
south_east: GPSPoint
|
|
|