17 lines
308 B
Go
17 lines
308 B
Go
package commands
|
|
|
|
import "github.com/google/uuid"
|
|
|
|
type UpdateUserCommand struct {
|
|
Id uuid.UUID
|
|
Username string
|
|
Password string
|
|
Name string
|
|
Role string
|
|
Speciality string
|
|
Description string
|
|
Skills string
|
|
Avatar string
|
|
Projects string
|
|
Motto string
|
|
}
|