6 lines
133 B
Go
6 lines
133 B
Go
|
package request
|
||
|
|
||
|
type GetProductNotesReq struct {
|
||
|
ProductName string `json:"product_name" form:"product_name" binding:"required"`
|
||
|
}
|