9 lines
184 B
Go
9 lines
184 B
Go
|
package response
|
||
|
|
||
|
import "github.com/eryajf-world/go-ldap-admin/model"
|
||
|
|
||
|
type LogListRsp struct {
|
||
|
Total int64 `json:"total"`
|
||
|
Logs []model.OperationLog `json:"logs"`
|
||
|
}
|