mirror of
https://github.com/openimsdk/open-im-server.git
synced 2025-04-06 04:15:46 +08:00
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
|
|
}
|