feat: add comment, creating refactor

This commit is contained in:
2024-10-15 07:41:24 +03:00
parent ab5fc94e1b
commit 0407177085
3 changed files with 20 additions and 5 deletions

View File

@@ -1,4 +1,4 @@
from typing import List
from typing import List, Optional
from pydantic import field_validator
@@ -23,6 +23,7 @@ class ClientSchema(BaseSchema):
name: str
company_name: str
barcode_template: BarcodeTemplateSchema | None = None
comment: Optional[str] = None
details: ClientDetailsSchema | None = None