unity check if swipe not tap

Code Example - unity check if swipe not tap

                
                        //SWIPE OR TAP 

if(Input.GetTouch(0).phase == TouchPhase.Stationary) {
 
     //jump
 }
 if(Input.GetTouch(0).phase == TouchPhase.Moved) {
 
     //dash
 }