xiecheng_server/model/system/response/sys_api.go
2025-03-28 17:14:57 +08:00

19 lines
338 B
Go

package response
import (
"git.echol.cn/loser/xiecheng_server/model/system"
)
type SysAPIResponse struct {
Api system.SysApi `json:"api"`
}
type SysAPIListResponse struct {
Apis []system.SysApi `json:"apis"`
}
type SysSyncApis struct {
NewApis []system.SysApi `json:"newApis"`
DeleteApis []system.SysApi `json:"deleteApis"`
}