Files
base/internal/domain/profile/about.go
2026-04-10 18:25:21 +03:30

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
}