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

View file

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