mirror of
https://github.com/0rangebananaspy/authelia.git
synced 2024-09-14 22:47:21 +07:00
10 lines
201 B
Go
10 lines
201 B
Go
package model
|
|
|
|
// DuoDevice represents a DUO Device.
|
|
type DuoDevice struct {
|
|
ID int `db:"id"`
|
|
Username string `db:"username"`
|
|
Device string `db:"device"`
|
|
Method string `db:"method"`
|
|
}
|