This commit is contained in:
Kfir Dayan 2023-06-11 13:45:29 +03:00
parent 5d615c6783
commit 4423474511

View file

@ -232,4 +232,22 @@ status 404
productId: number productId: number
} }
} }
``` ```
## Product
```
{
name: string,
description: string,
price: number
userId: string
}
```
## Cart
```
{
userId: string,
products: {
productId: number (quantity)
},
}
```