ldap-1-backend/svc/response/role_rsp.go

9 lines
164 B
Go
Raw 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 RoleListRsp struct {
Total int64 `json:"total"`
Roles []model.Role `json:"roles"`
}