13 lines
235 B
Go
13 lines
235 B
Go
package profile
|
|
|
|
type Hero struct {
|
|
Role *Role
|
|
FirstName string
|
|
LastName string
|
|
Company string
|
|
ShortDescription string
|
|
ResumeLink string
|
|
CTAEnabled bool
|
|
Avatar string
|
|
}
|