Rename requirements.txt + add ClientData skeleton

This commit is contained in:
Nitwix
2025-04-12 09:42:40 +02:00
parent a3fb4e5254
commit 8e9db9f1da
3 changed files with 24 additions and 0 deletions

10
dto/client_data.py Normal file
View File

@ -0,0 +1,10 @@
from pydantic import BaseModel
class ClientData(BaseModel):
"""
Model for the client data attributes which need to be validated and compared for correspondence between
the data sources ()
"""
name: str
# TODO CONTINUE