15 lines
205 B
Python
15 lines
205 B
Python
from pydantic import BaseModel
|
|
|
|
|
|
class Station(BaseModel):
|
|
id: str
|
|
name: str
|
|
|
|
|
|
class StationsResponse(BaseModel):
|
|
stations: list[Station]
|
|
|
|
|
|
class LinesResponse(BaseModel):
|
|
lines: list[str]
|