common/structs/utils/dict.go

9 lines
150 B
Go

package utils
type Dict struct {
Key string `json:"key"`
Title string `json:"title"`
Value any `json:"value"`
Color string `json:"color"`
}