first chapter

This commit is contained in:
marys
2025-08-21 14:31:47 +02:00
parent 9fb5ca2110
commit 8502d81972
4 changed files with 76 additions and 21 deletions

9
models/address.py Normal file
View File

@@ -0,0 +1,9 @@
from __future__ import annotations
from pydantic import BaseModel
class Address(BaseModel):
street: str
house_number: int | str
city: str