ios: remove unused type

This commit is contained in:
Evgeny Poberezkin
2023-03-22 15:59:48 +00:00
parent 06a0dbd0f2
commit 1db61be860
2 changed files with 0 additions and 9 deletions

View File

@@ -10,7 +10,6 @@ import SwiftUI
import SimpleXChat
struct PrivacySettings: View {
@EnvironmentObject var m: ChatModel
@AppStorage(DEFAULT_PRIVACY_ACCEPT_IMAGES) private var autoAcceptImages = true
@AppStorage(DEFAULT_PRIVACY_LINK_PREVIEWS) private var useLinkPreviews = true
@AppStorage(DEFAULT_DEVELOPER_TOOLS) private var developerTools = false

View File

@@ -692,14 +692,6 @@ public enum ChatResponse: Decodable, Error {
}
}
public struct UserPrivacyCfg: Encodable {
var currViewPwd: String
var showNtfs: Bool
var forceIncognito: Bool
var viewPwd: String
var wipePwd: String
}
public enum ChatPagination {
case last(count: Int)
case after(chatItemId: Int64, count: Int)