blob: 2425413fdd7d3848463c7591032539666ab22fc6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
//
// LocationCellViewModel.swift
// MullvadVPN
//
// Created by Mojgan on 2024-02-05.
// Copyright © 2024 Mullvad VPN AB. All rights reserved.
//
import MullvadTypes
struct LocationCellViewModel: Hashable {
let section: LocationSection
let node: LocationNode
var indentationLevel = 0
func hash(into hasher: inout Hasher) {
hasher.combine(section)
hasher.combine(node)
}
static func == (lhs: Self, rhs: Self) -> Bool {
lhs.node == rhs.node &&
lhs.section == rhs.section
}
}
|