mirror of
https://github.com/vx3r/wg-gen-web.git
synced 2024-11-04 17:31:17 +00:00
13 lines
264 B
Go
13 lines
264 B
Go
package model
|
|
|
|
import "time"
|
|
|
|
type User struct {
|
|
Sub string `json:"sub"`
|
|
Name string `json:"name"`
|
|
Email string `json:"email"`
|
|
Profile string `json:"profile"`
|
|
Issuer string `json:"issuer"`
|
|
IssuedAt time.Time `json:"issuedAt"`
|
|
}
|