mirror of
https://github.com/thatmattlove/hyperglass.git
synced 2026-01-17 08:48:05 +00:00
15 lines
216 B
Go
15 lines
216 B
Go
package models
|
|
|
|
import (
|
|
"database/sql"
|
|
)
|
|
|
|
type Credential struct {
|
|
Model
|
|
Username string
|
|
Mode uint `gorm:"default:1"`
|
|
Password sql.NullString
|
|
Key sql.NullString
|
|
Devices []Device
|
|
Proxies []Proxy
|
|
}
|