ios/TestHarnessShared/UI/Autofill/SimpleLoginForm/SimpleLoginFormAction.swift
2025-11-21 16:36:58 -03:00

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)
}