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