search.go 249 B

12345678910
  1. package models
  2. type SearchHit struct {
  3. Id int64 `json:"id"`
  4. Title string `json:"title"`
  5. Uri string `json:"uri"`
  6. Type string `json:"type"`
  7. Tags []string `json:"tags"`
  8. IsStarred bool `json:"isStarred"`
  9. }