mirror of
https://github.com/grafana/grafana.git
synced 2024-11-23 09:26:43 -06:00
11 lines
249 B
Go
11 lines
249 B
Go
package models
|
|
|
|
type SearchHit struct {
|
|
Id int64 `json:"id"`
|
|
Title string `json:"title"`
|
|
Uri string `json:"uri"`
|
|
Type string `json:"type"`
|
|
Tags []string `json:"tags"`
|
|
IsStarred bool `json:"isStarred"`
|
|
}
|