fasten-onprem/backend/pkg/auth/user_metadata.go

13 lines
265 B
Go
Raw Normal View History

2022-12-03 18:15:19 -07:00
package auth
import (
"github.com/fastenhealth/fasten-onprem/backend/pkg"
)
2022-12-03 18:15:19 -07:00
type UserMetadata struct {
FullName string `json:"full_name"`
Picture string `json:"picture"`
Email string `json:"email"`
Role pkg.UserRole `json:"role"`
2022-12-03 18:15:19 -07:00
}