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

9 lines
178 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 LogListRsp struct {
Total int64 `json:"total"`
Logs []model.OperationLog `json:"logs"`
}