9 lines
184 B
Go
9 lines
184 B
Go
package dto
|
|
|
|
type TreeMenu struct {
|
|
Title string `json:"title"`
|
|
Key string `json:"key"`
|
|
IsLeaf bool `json:"isLeaf"`
|
|
Children []TreeMenu `json:"children"`
|
|
}
|