14 lines
		
	
	
		
			187 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			187 B
		
	
	
	
		
			C#
		
	
	
	
	
	
| using System;
 | |
| using System.Collections.Generic;
 | |
| using System.Text;
 | |
| 
 | |
| namespace Datamodels.Enums
 | |
| {
 | |
|     public enum SearchTypes
 | |
|     {
 | |
|         Phrase,
 | |
|         Range,
 | |
|         Terms
 | |
|     }
 | |
| }
 |