8 lines
196 B
Go
8 lines
196 B
Go
|
|
package usecase
|
||
|
|
|
||
|
|
// OTPChallengeDTO is returned when an OTP challenge is created.
|
||
|
|
type OTPChallengeDTO struct {
|
||
|
|
ChallengeID string `json:"challenge_id"`
|
||
|
|
ExpiresIn int `json:"expires_in"`
|
||
|
|
}
|