Files

13 lines
278 B
Swift

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