13 lines
169 B
Go
13 lines
169 B
Go
package profile
|
|
|
|
type Contact struct {
|
|
Email string
|
|
Phone string
|
|
SocialLinks []SocialLink
|
|
}
|
|
|
|
type SocialLink struct {
|
|
LinkType string
|
|
Link string
|
|
}
|