channel.go 188 B

123456789101112
  1. package response
  2. import "wails-app/internal/dao"
  3. type Channel struct {
  4. dao.Channel
  5. }
  6. type ChannelList struct {
  7. Total int64 `json:"total"`
  8. List []dao.Channel `json:"list"`
  9. }