polycule-connect/polyculeconnect/internal/model/user.go

10 lines
123 B
Go
Raw Normal View History

package model
import "github.com/google/uuid"
type User struct {
ID uuid.UUID
Email string
Username string
}