10 lines
154 B
Python
10 lines
154 B
Python
from __future__ import annotations
|
|
|
|
from pydantic import BaseModel
|
|
|
|
|
|
class Address(BaseModel):
|
|
street: str
|
|
house_number: int | str
|
|
city: str
|