package command type DeleteUserCommand struct { ID uint `json:"id"` } func NewDeleteUserCommand(id uint) *DeleteUserCommand { return &DeleteUserCommand{ID: id} }