auth/internal/model/profile.go
2021-09-23 22:55:56 +05:00

13 lines
142 B
Go

package model
type Profile struct {
Name string
URL URL
Photo URL
Email string
}
func NewProfile() *Profile {
return new(Profile)
}