9 lines
177 B
Python
9 lines
177 B
Python
from marshmallow import Schema, fields
|
|
|
|
from schema.gps_schema import GpsSchema
|
|
|
|
|
|
class ParkingSchema(Schema):
|
|
gps = fields.Nested(GpsSchema)
|
|
empty_count = fields.Int()
|