mirror of
https://github.com/h44z/wg-portal.git
synced 2025-04-19 08:55:12 +00:00
12 lines
150 B
Go
12 lines
150 B
Go
|
package authentication
|
||
|
|
||
|
type User struct {
|
||
|
Email string
|
||
|
IsAdmin bool
|
||
|
|
||
|
// optional fields
|
||
|
Firstname string
|
||
|
Lastname string
|
||
|
Phone string
|
||
|
}
|