mirror of
https://github.com/bitwarden/ios.git
synced 2025-12-11 23:33:36 -06:00
12 lines
279 B
Swift
12 lines
279 B
Swift
import Foundation
|
|
|
|
/// Actions that can be processed by a `SimpleLoginFormProcessor`.
|
|
///
|
|
enum SimpleLoginFormAction: Equatable {
|
|
/// The password field was updated.
|
|
case passwordChanged(String)
|
|
|
|
/// The username field was updated.
|
|
case usernameChanged(String)
|
|
}
|