mirror of
https://github.com/bitwarden/ios.git
synced 2026-06-19 01:13:15 -05:00
13 lines
345 B
Swift
13 lines
345 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?
|
|
/// The active user's ID.
|
|
var userID: String?
|
|
}
|