17 lines
290 B
Go
17 lines
290 B
Go
package commands
|
|
|
|
import "time"
|
|
|
|
type CreateUserCommand struct {
|
|
Username string
|
|
Password string
|
|
Name string
|
|
Role string
|
|
Speciality string
|
|
Description string
|
|
Skills string
|
|
Avatar string
|
|
JoinDate time.Time
|
|
Projects string
|
|
Motto string
|
|
}
|