19 lines
340 B
Go
19 lines
340 B
Go
package models
|
|
|
|
import "time"
|
|
|
|
type ActionTokenTarget string
|
|
|
|
const (
|
|
ActionTokenTargetRestorePassword ActionTokenTarget = "restore"
|
|
ActionTokenTargetVerifyEmail ActionTokenTarget = "verify"
|
|
)
|
|
|
|
type ActionTokenDTO struct {
|
|
Id string
|
|
UserId string
|
|
Value string
|
|
Target ActionTokenTarget
|
|
Expiration time.Time
|
|
}
|