mirror of
https://github.com/bitwarden/ios.git
synced 2026-04-13 10:54:06 -05:00
11 lines
291 B
Swift
11 lines
291 B
Swift
// MARK: - DebugMenuState
|
|
|
|
/// The state used to present the `DebugMenuView`.
|
|
///
|
|
struct DebugMenuState: Equatable, Sendable {
|
|
/// The current feature flags supported.
|
|
var featureFlags: [DebugMenuFeatureFlag] = []
|
|
/// A toast message to show in the view.
|
|
var toast: Toast?
|
|
}
|