1
1
mirror of https://github.com/vx3r/wg-gen-web.git synced 2024-11-23 02:42:07 +01:00
wg-gen-web/model/user.go

14 lines
282 B
Go
Raw Normal View History

2020-04-28 13:11:49 +02:00
package model
import "time"
2020-06-10 09:52:44 +02:00
// User structure
2020-04-28 13:11:49 +02:00
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"`
}