README
This commit is contained in:
parent
5d615c6783
commit
4423474511
1 changed files with 19 additions and 1 deletions
20
README.md
20
README.md
|
@ -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)
|
||||||
|
},
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
Loading…
Reference in a new issue