14 lines
		
	
	
		
			292 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			292 B
		
	
	
	
		
			C#
		
	
	
	
	
	
| using System;
 | |
| using System.Collections.Generic;
 | |
| using System.Text;
 | |
| 
 | |
| namespace Datamodels.SearchModels
 | |
| {
 | |
|     public class FilterModel
 | |
|     {
 | |
|         public List<TableModel> TableDescriptions { get; set; }
 | |
|         public long Skip { get; set; }
 | |
|         public long Take { get; set; }
 | |
|     }
 | |
| }
 |