separated clients handlers, cart->checkout ppline
This commit is contained in:
@@ -1,4 +1,5 @@
|
||||
from dataclasses import dataclass
|
||||
from typing import Optional
|
||||
|
||||
|
||||
@dataclass(frozen=True)
|
||||
@@ -17,3 +18,4 @@ class CartItemDTO:
|
||||
class CartDTO:
|
||||
items: list[CartItemDTO]
|
||||
total: int
|
||||
order_id: Optional[int] = None
|
||||
|
||||
Reference in New Issue
Block a user