7 lines
154 B
Go
7 lines
154 B
Go
|
package model
|
||
|
|
||
|
type QueryInfo struct {
|
||
|
Query string `json:"query,omitempty"`
|
||
|
Extend map[string]interface{} `json:"extend,omitempty"`
|
||
|
}
|