reactredux/webapi/Core/Models/PaginationModel.cs

16 lines
383 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> : ResponseModelBase {
public int TotalPages { get; set; }
public int CurrentPage { get; set; }
public List<T> Items { get; set; }
}
}