next-terminal/server/dto/permission.go
2022-10-23 20:05:13 +08:00

8 lines
147 B
Go

package dto
type TreeMenu struct {
Title string `json:"title"`
Key string `json:"key"`
Children []TreeMenu `json:"children"`
}