mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-12 11:04:25 +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
|
||
|
}
|