mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-12 11:04:25 +00:00
13 lines
180 B
Go
13 lines
180 B
Go
|
package model
|
||
|
|
||
|
import "github.com/caos/zitadel/internal/crypto"
|
||
|
|
||
|
type Multifactors struct {
|
||
|
OTP OTP
|
||
|
}
|
||
|
|
||
|
type OTP struct {
|
||
|
Issuer string
|
||
|
CryptoMFA crypto.EncryptionAlgorithm
|
||
|
}
|