274e01d113
Signed-off-by: dab246 <tdvu@linagora.com> (cherry picked from commit a37fe7ea8bcc38eb96df39f46128c9e1f7af046e)
13 lines
419 B
Swift
13 lines
419 B
Swift
import Foundation
|
|
|
|
struct KeychainCredentials {
|
|
let accountId: String
|
|
let sharingSession: KeychainSharingSession
|
|
}
|
|
|
|
protocol KeychainControllerDelegate: AnyObject {
|
|
func retrieveSharingSessionFromKeychain(accountId: String) -> KeychainSharingSession?
|
|
func retrieveSharingSessions() -> [KeychainCredentials]
|
|
func updateEmailDeliveryStateToKeychain(accountId: String, newEmailDeliveryState: String)
|
|
}
|