common/structs/utils/dict.go

8 lines
121 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"`
Value string `json:"value"`
}