ldap-1-backend/model/response/menu_rsp.go

9 lines
164 B
Go
Raw Permalink Normal View History

2022-05-18 17:57:03 +08:00
package response
2022-05-29 10:06:21 +08:00
import "github.com/eryajf/go-ldap-admin/model"
2022-05-18 17:57:03 +08:00
type MenuListRsp struct {
Total int64 `json:"total"`
Menus []model.Menu `json:"menus"`
}