Fix hidden IPv4Settings fields

This commit is contained in:
Davide De Rosa 2019-10-23 10:55:37 +02:00
parent 7608ae2e3c
commit dcac7cb2d4
1 changed files with 4 additions and 4 deletions

View File

@ -55,16 +55,16 @@ public struct IPv4Settings: Codable, CustomStringConvertible {
} }
/// The address. /// The address.
let address: String public let address: String
/// The address mask. /// The address mask.
let addressMask: String public let addressMask: String
/// The address of the default gateway. /// The address of the default gateway.
let defaultGateway: String public let defaultGateway: String
/// The additional routes. /// The additional routes.
let routes: [Route] public let routes: [Route]
// MARK: CustomStringConvertible // MARK: CustomStringConvertible