message.go 188 B

123456789
  1. package model
  2. type Message struct {
  3. MsgType int `json:"msgType"`
  4. From int64 `json:"from"`
  5. To int64 `json:"to"`
  6. Time int64 `json:"time"`
  7. Content any `json:"content"`
  8. }