message.go 183 B

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