process subscription summaries in ios/android (#374)

This commit is contained in:
Evgeny Poberezkin
2022-02-25 20:26:56 +00:00
committed by GitHub
parent c242f0079c
commit 1d2d1e6df7
11 changed files with 97 additions and 77 deletions

View File

@@ -426,6 +426,11 @@ struct Contact: Identifiable, Decodable, NamedChat {
)
}
struct ContactSubStatus: Decodable {
var contact: Contact
var contactError: ChatError?
}
struct Connection: Decodable {
var connStatus: String
@@ -503,6 +508,11 @@ struct GroupMember: Decodable {
)
}
struct MemberSubError: Decodable {
var member: GroupMember
var memberError: ChatError
}
struct AChatItem: Decodable {
var chatInfo: ChatInfo
var chatItem: ChatItem