blob: d20429f62a9ccea15efb5939e69a6373967e6ee9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
//
// RelaySelectorResult.swift
// MullvadREST
//
// Created by Mojgan on 2024-05-14.
// Copyright © 2025 Mullvad VPN AB. All rights reserved.
//
import Foundation
import MullvadTypes
public typealias RelaySelectorResult = RelaySelectorMatch
public struct RelaySelectorMatch: Codable, Equatable {
public var endpoint: MullvadEndpoint
public var relay: REST.ServerRelay
public var location: Location
}
|