9 lines
139 B
Go
9 lines
139 B
Go
package commands
|
|
|
|
import "github.com/google/uuid"
|
|
|
|
type UpdateUserCommand struct {
|
|
Id uuid.UUID
|
|
Username string
|
|
Password string
|
|
}
|