mirror of
https://github.com/sonr-io/sonr.git
synced 2026-08-03 01:41:44 +00:00
10 lines
187 B
Go
10 lines
187 B
Go
package orm
|
|
|
|
type UserInfo struct {
|
|
DID string
|
|
Sub string `json:"sub"`
|
|
Name string `json:"name,omitempty"`
|
|
Email string `json:"email,omitempty"`
|
|
// Add other claims as needed
|
|
}
|