TF-2384 Create TwakeCore in ios folder to handle network jmap request to server

Signed-off-by: dab246 <tdvu@linagora.com>
(cherry picked from commit d8a330b987860f133b7e56b4aa67669c9d3c8f20)
This commit is contained in:
dab246
2023-12-24 19:31:03 +07:00
committed by Dat H. Pham
parent 0cd0c24a56
commit edcc30808c
14 changed files with 375 additions and 4 deletions
@@ -0,0 +1,8 @@
import Foundation
struct Email: Codable {
let id: String
let subject: String?
let preview: String?
let from: [EmailAddress]?
}
@@ -0,0 +1,6 @@
import Foundation
struct EmailAddress: Codable {
let name: String?
let email: String?
}