|
package entities
|
|
|
|
type Order struct {
|
|
ID int `json:"id"`
|
|
Items []Item `json:"items"`
|
|
Total float64 `json:"total"`
|
|
Status string `json:"status"`
|
|
Timestamp string `json:"timestamp"`
|
|
}
|
|
|
|
type Item struct {
|
|
ProductID int `json:"product_id"`
|
|
Quantity int `json:"quantity"`
|
|
}
|