wg-portal/internal/authentication/user.go
Christoph Haas 9faa459c44 cleanup
2021-02-26 22:17:04 +01:00

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
}