sandbox.go 237 B

123456789101112
  1. package response
  2. import (
  3. "eta/eta_mobile/models/sandbox"
  4. "github.com/rdlucklib/rdluck_tools/paging"
  5. )
  6. // SandboxListResp 沙盘列表返回数据
  7. type SandboxListResp struct {
  8. Paging *paging.PagingItem
  9. List []*sandbox.Sandbox
  10. }