CartItem represents an item in the shopping cart
| 60 | |
| 61 | // CartItem represents an item in the shopping cart |
| 62 | type CartItem struct { |
| 63 | ProductName string `json:"product_name"` |
| 64 | Quantity int `json:"quantity"` |
| 65 | Price float64 `json:"price"` |
| 66 | Subtotal float64 `json:"subtotal"` |
| 67 | } |
| 68 | |
| 69 | // ProductFilter represents search parameters for products |
| 70 | type ProductFilter struct { |
nothing calls this directly
no outgoing calls
no test coverage detected