Files
atom/providers/dictionary/info.go
2023-02-05 13:30:43 +08:00

15 lines
204 B
Go

package dictionary
type DictInfo struct {
ID uint64
Name string
Alias string
Description string
Items []*DictItem
}
type DictItem struct {
Label string
Value string
}