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