14 lines
190 B
Go
14 lines
190 B
Go
package profile
|
|
|
|
type About struct {
|
|
ProfilePicture string
|
|
About string
|
|
Achievements []Achievement
|
|
}
|
|
|
|
type Achievement struct {
|
|
Title string
|
|
Value string
|
|
Enabled bool
|
|
}
|