16 lines
		
	
	
		
			379 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			379 B
		
	
	
	
		
			C#
		
	
	
	
	
	
| using Core.Abstractions;
 | |
| using Core.Abstractions.Models;
 | |
| using System;
 | |
| using System.Collections.Generic;
 | |
| using System.Linq;
 | |
| using System.Text;
 | |
| using System.Threading.Tasks;
 | |
| 
 | |
| namespace Core.Models {
 | |
|   public class PaginationModel<T> : ResponseModel {
 | |
|     public int TotalPages { get; set; }
 | |
|     public int CurrentPage { get; set; }
 | |
|     public List<T> Items { get; set; }
 | |
|   }
 | |
| }
 |