alfred/model/model.go
2026-03-28 19:27:32 +08:00

23 lines
480 B
Go

package model
import aw "github.com/deanishe/awgo"
type Item struct {
Title string
Subtitle *string
Match *string
UID *string
Autocomplete *string
Arg []string
Valid bool
File bool
Copytext *string
LargeType *string
QL *string
Vars map[string]string
Mods map[string]*aw.Modifier
Actions map[string][]string
Icon *aw.Icon
NoUID bool // Suppress UID in JSON
}