secant-ios-wallet/modules/Sources/Models/FeatureFlags.swift

33 lines
774 B
Swift

//
// FeatureFlags.swift
// Zashi
//
// Created by Lukáš Korba on 10-15-2024.
//
public struct FeatureFlags: Equatable {
public let addUAtoMemo: Bool
public let appLaunchBiometric: Bool
public let flexa: Bool
public let selectText: Bool
public let sendingScreen: Bool
public init(
addUAtoMemo: Bool = false,
appLaunchBiometric: Bool = true,
flexa: Bool = true,
selectText: Bool = true,
sendingScreen: Bool = true
) {
self.addUAtoMemo = addUAtoMemo
self.appLaunchBiometric = appLaunchBiometric
self.flexa = flexa
self.selectText = selectText
self.sendingScreen = sendingScreen
}
}
public extension FeatureFlags {
static let initial = FeatureFlags()
}