8 lines
121 B
Go
8 lines
121 B
Go
|
package utils
|
||
|
|
||
|
type Dict struct {
|
||
|
Key string `json:"key"`
|
||
|
Title string `json:"title"`
|
||
|
Value string `json:"value"`
|
||
|
}
|