Files
2024-12-11 01:06:53 +13: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
}
}