projectx/internal/db/model/dto/menu_ui_dto.go
2025-03-21 11:05:42 +08:00

12 lines
305 B
Go

package dto
type MenuUIDto struct {
ID string `json:"id"`
Title string `json:"title"`
Icon string `json:"icon"`
Type int `json:"type"`
OpenType string `json:"openType"`
Href string `json:"href"`
Children []*MenuUIDto `json:"children"`
}