9 lines
170 B
Go
9 lines
170 B
Go
|
package response
|
||
|
|
||
|
import "github.com/eryajf-world/go-ldap-admin/model"
|
||
|
|
||
|
type UserListRsp struct {
|
||
|
Total int `json:"total"`
|
||
|
Users []model.User `json:"users"`
|
||
|
}
|