Files
gps-denied-desktop/models/core/polygon.py
T
Oleksandr Bezdieniezhnykh abc26d5c20 initial structure implemented
docs -> _docs
2025-12-01 14:20:56 +02:00

9 lines
142 B
Python

from pydantic import BaseModel
from .gps_point import GPSPoint
class Polygon(BaseModel):
north_west: GPSPoint
south_east: GPSPoint