common/structs/utils/dict.go

9 lines
150 B
Go
Raw Normal View History

2024-09-03 14:41:20 +08:00
package utils
type Dict struct {
Key string `json:"key"`
Title string `json:"title"`
2024-09-03 14:44:55 +08:00
Value any `json:"value"`
2024-09-03 15:12:37 +08:00
Color string `json:"color"`
2024-09-03 14:41:20 +08:00
}