8 lines
153 B
Go
8 lines
153 B
Go
|
package model
|
||
|
|
||
|
// QueryTypeItem ...
|
||
|
type QueryTypeItem struct {
|
||
|
Name interface{} `json:"name" validate:"required"`
|
||
|
Value interface{} `json:"value"`
|
||
|
}
|