8 lines
173 B
Go
Raw Permalink Normal View History

2019-06-03 09:32:43 +00:00
package arn
// EmailToUser stores the user ID for an email address.
type EmailToUser struct {
Email string `json:"email" primary:"true"`
2019-06-03 09:32:43 +00:00
UserID UserID `json:"userId"`
}