blob: 7a30744c2d764938d25be5e2b2a5f030f01b3ac2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
//
// OperationCondition.swift
// MullvadVPN
//
// Created by pronebird on 30/05/2022.
// Copyright © 2022 Mullvad VPN AB. All rights reserved.
//
import Foundation
public protocol OperationCondition {
var name: String { get }
var isMutuallyExclusive: Bool { get }
func evaluate(for operation: Operation, completion: @escaping (Bool) -> Void)
}
|