// // RelayCandidates.swift // MullvadVPN // // Created by Mojgan on 2025-03-03. // Copyright © 2025 Mullvad VPN AB. All rights reserved. // public struct RelayCandidates: Equatable, Sendable { public let entryRelays: [RelayWithLocation]? public let exitRelays: [RelayWithLocation] public init( entryRelays: [RelayWithLocation]?, exitRelays: [RelayWithLocation] ) { self.entryRelays = entryRelays self.exitRelays = exitRelays } }