binhonglee/GlobeTrotte

View on GitHub
src/turbine/email/emailobj.go

Summary

Maintainability
A
0 mins
Test Coverage
// DO NOT EDIT THIS FILE DIRECTLY!
// Edits will be overwritten on build.
//
// If you would like to make any changes, please edit the source file (src/wings/struct/email_obj.wings)
// and run the following command:
// plz build //src/wings/...

package email

// EmailObj - Email confirmation object.
type EmailObj struct {
    Uuid   string `json:"uuid"`
    Userid int    `json:"userid"`
}

// EmailObjs - An array of EmailObj
type EmailObjs []EmailObj