mirror of
https://github.com/openimsdk/open-im-server.git
synced 2026-04-28 14:29:19 +08:00
74de8825f6
Signed-off-by: kubbot & kubecub <3293172751ysy@gmail.com>
16 lines
243 B
Go
16 lines
243 B
Go
package notification
|
|
|
|
type CommonUser interface {
|
|
GetNickname() string
|
|
GetFaceURL() string
|
|
GetUserID() string
|
|
GetEx() string
|
|
}
|
|
|
|
type CommonGroup interface {
|
|
GetNickname() string
|
|
GetFaceURL() string
|
|
GetGroupID() string
|
|
GetEx() string
|
|
}
|