mirror of
https://github.com/bitwarden/ios.git
synced 2025-12-11 13:54:06 -06:00
12 lines
263 B
Swift
12 lines
263 B
Swift
import BitwardenKit
|
|
import Foundation
|
|
|
|
// MARK: - DebugMenuState
|
|
|
|
/// The state used to present the `DebugMenuView`.
|
|
///
|
|
struct DebugMenuState: Equatable, Sendable {
|
|
/// The current feature flags supported.
|
|
var featureFlags: [DebugMenuFeatureFlag] = []
|
|
}
|