wg-portal/internal/authentication/user.go

12 lines
150 B
Go
Raw Normal View History

package authentication
type User struct {
Email string
IsAdmin bool
// optional fields
Firstname string
Lastname string
Phone string
}