modifiche002

This commit is contained in:
2026-05-26 14:38:05 +02:00
parent 83fb4b8c1e
commit bd5b845e43
10 changed files with 162 additions and 152 deletions

View File

@@ -6,6 +6,7 @@ class BookingRequestCreate(BaseModel):
phone: str = Field(min_length=5, max_length=40)
pet_name: str = Field(default="", max_length=120)
pet_type: str = Field(default="cane", max_length=40)
doctor: str = Field(min_length=2, max_length=120)
service: str = Field(min_length=2, max_length=120)
date: str = Field(min_length=8, max_length=20)
time: str = Field(default="", max_length=20)