mirror of
https://github.com/FlourishingWorld/hk4e.git
synced 2026-02-04 15:32:26 +08:00
17 lines
200 B
Go
17 lines
200 B
Go
package model
|
|
|
|
const (
|
|
ChatMsgTypeText = iota
|
|
ChatMsgTypeIcon
|
|
)
|
|
|
|
type ChatMsg struct {
|
|
Time uint32
|
|
ToUid uint32
|
|
Uid uint32
|
|
IsRead bool
|
|
MsgType uint8
|
|
Text string
|
|
Icon uint32
|
|
}
|