package common import ( "time" "github.com/google/uuid" ) type UserResult struct { Id uuid.UUID UserName string Password string Name string Role string Speciality string Description string Skills string Avatar string JoinDate time.Time Projects string Motto string } type UserResultList struct { Result []*UserResult }