8 lines
152 B
Go
8 lines
152 B
Go
package dto
|
|
|
|
type ItemOrderSetQuantityRequest struct {
|
|
OrderId int `json:"order_id"`
|
|
ItemId int `json:"item_id"`
|
|
Quantity int `json:"quantity"`
|
|
}
|