package response

import (
	"github.com/rdlucklib/rdluck_tools/paging"
	"hongze/hz_eta_api/models/sandbox"
)

// SandboxListResp 沙盘列表返回数据
type SandboxListResp struct {
	Paging *paging.PagingItem
	List   []*sandbox.SandboxListItem
}

// SandboxVersionListResp 沙盘版本列表返回数据
type SandboxVersionListResp struct {
	Paging *paging.PagingItem
	List   []*sandbox.SandboxVersionListItem
}