wg-gen-web/model/user.go

14 lines
282 B
Go
Raw Normal View History

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