mirror of
https://github.com/DJSundog/wg-portal.git
synced 2024-11-14 10:43:51 -05:00
13 lines
230 B
Go
13 lines
230 B
Go
package authentication
|
|
|
|
// User represents the data that can be retrieved from authentication backends.
|
|
type User struct {
|
|
Email string
|
|
IsAdmin bool
|
|
|
|
// optional fields
|
|
Firstname string
|
|
Lastname string
|
|
Phone string
|
|
}
|