status-go/protocol/chat_entity.go

14 lines
221 B
Go

package protocol
import (
"crypto/ecdsa"
"github.com/status-im/status-go/protocol/protobuf"
)
type ChatEntity interface {
GetChatId() string
GetMessageType() protobuf.MessageType
GetSigPubKey() *ecdsa.PublicKey
}