9 lines
170 B
Go
9 lines
170 B
Go
|
package response
|
||
|
|
||
|
import "github.com/eryajf-world/go-ldap-admin/model"
|
||
|
|
||
|
type RoleListRsp struct {
|
||
|
Total int64 `json:"total"`
|
||
|
Roles []model.Role `json:"roles"`
|
||
|
}
|