mirror of
https://github.com/ente-io/ente.git
synced 2025-07-01 13:13:35 +00:00
12 lines
249 B
Dart
12 lines
249 B
Dart
enum TwoFactorType { totp, passkey }
|
|
|
|
// ToString for TwoFactorType
|
|
String twoFactorTypeToString(TwoFactorType type) {
|
|
switch (type) {
|
|
case TwoFactorType.totp:
|
|
return "totp";
|
|
case TwoFactorType.passkey:
|
|
return "passkey";
|
|
}
|
|
}
|