sandbox.go 302 B

12345678910111213141516
  1. package response
  2. import (
  3. "eta_gn/eta_api/models/sandbox"
  4. "github.com/rdlucklib/rdluck_tools/paging"
  5. )
  6. type SandboxListResp struct {
  7. Paging *paging.PagingItem
  8. List []*sandbox.Sandbox
  9. }
  10. type SandboxVersionListResp struct {
  11. Paging *paging.PagingItem
  12. List []*sandbox.SandboxVersionListItem
  13. }