mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-06-16 05:55:20 +00:00
18 lines
526 B
Swift
18 lines
526 B
Swift
import Foundation
|
|
|
|
public struct WalletConfiguration {
|
|
public static var defaultValue: WalletConfiguration {
|
|
return WalletConfiguration(config: nil, blockchainName: nil, disableProxy: false)
|
|
}
|
|
|
|
public let config: String?
|
|
public let blockchainName: String?
|
|
public let disableProxy: Bool
|
|
|
|
public init(config: String?, blockchainName: String?, disableProxy: Bool) {
|
|
self.config = config
|
|
self.blockchainName = blockchainName
|
|
self.disableProxy = disableProxy
|
|
}
|
|
}
|