12 lines
328 B
Go
12 lines
328 B
Go
|
package models
|
||
|
|
||
|
// TOTPConfiguration represents a users TOTP configuration row in the database.
|
||
|
type TOTPConfiguration struct {
|
||
|
ID int `db:"id"`
|
||
|
Username string `db:"username"`
|
||
|
Algorithm string `db:"algorithm"`
|
||
|
Digits int `db:"digits"`
|
||
|
Period uint64 `db:"totp_period"`
|
||
|
Secret string `db:"secret"`
|
||
|
}
|