mirror of
https://github.com/pocket-id/pocket-id.git
synced 2026-02-04 15:04:43 +00:00
14 lines
236 B
Go
14 lines
236 B
Go
package model
|
|
|
|
import datatype "github.com/pocket-id/pocket-id/backend/internal/model/types"
|
|
|
|
type OneTimeAccessToken struct {
|
|
Base
|
|
Token string
|
|
DeviceToken *string
|
|
ExpiresAt datatype.DateTime
|
|
|
|
UserID string
|
|
User User
|
|
}
|