summaryrefslogtreecommitdiffhomepage
path: root/ios/MullvadSettings/RecentConnections.swift
blob: d4a83c348be43029c0c7d6dbbd8c74a7b5f33e87 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//
//  RecentConnections.swift
//  MullvadVPN
//
//  Created by Mojgan on 2025-10-15.
//  Copyright © 2025 Mullvad VPN AB. All rights reserved.
//
import MullvadTypes

public struct RecentConnections: Codable, Sendable, Equatable {
    let isEnabled: Bool
    let entryLocations: [UserSelectedRelays]
    let exitLocations: [UserSelectedRelays]
}