tencent-im/recentcontact/enum.go

17 lines
275 B
Go
Raw Normal View History

2022-09-27 11:31:23 +08:00
/**
* @Author: wanglin
* @Author: wanglin@vspn.com
* @Date: 2021/10/28 17:22
* @Desc: TODO
*/
package recentcontact
// SessionType 会话类型
type SessionType int
const (
SessionTypeC2C SessionType = 1 // C2C 会话
SessionTypeG2C SessionType = 2 // G2C 会话
)