Files
cloud-services/pkg/common/user_profile.go

9 lines
185 B
Go

package common
type UserProfile struct {
FirstName string `json:"first_name"`
LastName string `json:"last_name"`
Email string `json:"email"`
Phone string `json:"phone"`
}