summaryrefslogtreecommitdiffhomepage
path: root/ios/MullvadSettings/InfoHeaderConfig.swift
blob: 43ad7bc7e70cb79b3335f42e3584f8945bdee495 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//
//  InfoHeaderConfig.swift
//  MullvadVPN
//
//  Created by Jon Petersson on 2024-10-01.
//  Copyright © 2024 Mullvad VPN AB. All rights reserved.
//

public struct InfoHeaderConfig {
    public let body: String
    public let link: String

    public init(body: String, link: String) {
        self.body = body
        self.link = link
    }
}