chart.go 194 B

123456789101112
  1. package response
  2. import (
  3. "eta/eta_mini_bridge/models"
  4. "github.com/rdlucklib/rdluck_tools/paging"
  5. )
  6. type ChartListResp struct {
  7. List []*models.ChartInfoView
  8. Paging *paging.PagingItem
  9. }