Remove legacy fields

This commit is contained in:
Peter 2019-07-09 19:43:58 +04:00
parent d88a84e879
commit c241c9b6a3

View File

@ -50,15 +50,13 @@ public struct AccountProxyConnection: Codable {
public let username: String?
public let password: String?
public let secret: Data?
public let secretHost: String?
public init(host: String, port: Int32, username: String?, password: String?, secret: Data?, secretHost: String?) {
public init(host: String, port: Int32, username: String?, password: String?, secret: Data?) {
self.host = host
self.port = port
self.username = username
self.password = password
self.secret = secret
self.secretHost = secretHost
}
}