mirror of
https://github.com/simplex-chat/simplex-chat.git
synced 2024-12-17 17:20:21 +01:00
8f69d176c7
* move Markdown from simplexmq * update simplexmq
14 lines
258 B
Plaintext
14 lines
258 B
Plaintext
module Simplex.Chat.Protocol where
|
|
|
|
data Profile = Profile
|
|
{ displayName :: Text,
|
|
fullName :: Text
|
|
}
|
|
|
|
data Contact = Contact
|
|
{ profile :: Profile,
|
|
connection :: ConnAlias
|
|
}
|
|
|
|
data ChatMessage = ContentMessage | ReadNotification | FileTransfer
|