delete_user_command.go 166 B

123456789
  1. package command
  2. type DeleteUserCommand struct {
  3. ID uint `json:"id"`
  4. }
  5. func NewDeleteUserCommand(id uint) *DeleteUserCommand {
  6. return &DeleteUserCommand{ID: id}
  7. }