auth/internal/model/token.go

11 lines
161 B
Go
Raw Normal View History

package model
type Token struct {
2021-09-20 15:45:54 +00:00
AccessToken string
ClientID string
Me string
Profile *Profile
Scopes []string
Type string
}