8 lines
147 B
Go
8 lines
147 B
Go
package dto
|
|
|
|
type TreeMenu struct {
|
|
Title string `json:"title"`
|
|
Key string `json:"key"`
|
|
Children []TreeMenu `json:"children"`
|
|
}
|