Files
2024-12-13 13:10:28 +00:00

13 lines
269 B
Swift

import Foundation
public enum AuthenticationFactor: String, CustomStringConvertible {
case email = "email"
case phone = "phone"
case totp = "totp"
case recoverycode = "recoverycode"
public var description: String {
return rawValue
}
}