mirror of
https://github.com/zitadel/zitadel.git
synced 2025-04-22 10:21:31 +00:00
16 lines
277 B
Go
16 lines
277 B
Go
![]() |
package domain
|
||
|
|
||
|
import (
|
||
|
"github.com/caos/zitadel/internal/crypto"
|
||
|
es_models "github.com/caos/zitadel/internal/eventstore/models"
|
||
|
)
|
||
|
|
||
|
type OTP struct {
|
||
|
es_models.ObjectRoot
|
||
|
|
||
|
Secret *crypto.CryptoValue
|
||
|
SecretString string
|
||
|
Url string
|
||
|
State MFAState
|
||
|
}
|