Files
superherohub/pkg/people/identity.go

8 lines
199 B
Go

package people
// Identity represents the true identity of a person
type Identity struct {
FirstName string `json:"firstName" deesee:"encode"`
LastName string `json:"lastName" deesee:"encode"`
}