Files
open-im-server/pkg/rpcclient/notification/common.go
T

16 lines
243 B
Go
Raw Normal View History

2023-05-30 16:15:11 +08:00
package notification
type CommonUser interface {
GetNickname() string
GetFaceURL() string
GetUserID() string
GetEx() string
}
type CommonGroup interface {
GetNickname() string
GetFaceURL() string
GetGroupID() string
GetEx() string
}