diff options
| author | Jon Petersson <jon.petersson@kvadrat.se> | 2023-04-20 11:45:16 +0200 |
|---|---|---|
| committer | Andrej Mihajlov <and@mullvad.net> | 2023-04-20 14:00:55 +0200 |
| commit | fc907e43ad47737da75520876cfee175c32f9f29 (patch) | |
| tree | 05aacca6d953bd99205d73374eb4cb5d5d68e41d /ios/MullvadVPN/Containers/Root/RootConfiguration.swift | |
| parent | 47ca601dc4c7ae9973bc886fd52f0439d4db7ba1 (diff) | |
| download | mullvadvpn-fc907e43ad47737da75520876cfee175c32f9f29.tar.xz mullvadvpn-fc907e43ad47737da75520876cfee175c32f9f29.zip | |
Add a dedicated account button on the main view and remove it from settings
Diffstat (limited to 'ios/MullvadVPN/Containers/Root/RootConfiguration.swift')
| -rw-r--r-- | ios/MullvadVPN/Containers/Root/RootConfiguration.swift | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/ios/MullvadVPN/Containers/Root/RootConfiguration.swift b/ios/MullvadVPN/Containers/Root/RootConfiguration.swift new file mode 100644 index 0000000000..2229bdf4a0 --- /dev/null +++ b/ios/MullvadVPN/Containers/Root/RootConfiguration.swift @@ -0,0 +1,15 @@ +// +// RootConfiguration.swift +// MullvadVPN +// +// Created by Jon Petersson on 2023-04-19. +// Copyright © 2023 Mullvad VPN AB. All rights reserved. +// + +import Foundation + +struct RootConfigration { + var deviceName: String? + var expiry: Date? + var showsAccountButton: Bool +} |
