mirror of
https://github.com/0rangebananaspy/authelia.git
synced 2024-09-14 22:47:21 +07:00
13 lines
249 B
Go
13 lines
249 B
Go
|
package models
|
||
|
|
||
|
import (
|
||
|
"time"
|
||
|
)
|
||
|
|
||
|
// IdentityVerification represents an identity verification row in the database.
|
||
|
type IdentityVerification struct {
|
||
|
ID int `db:"id"`
|
||
|
Created time.Time `db:"created"`
|
||
|
Token string `db:"token"`
|
||
|
}
|