reactredux/webapi/Core/Abstractions/Models/PaginationModelBase.cs

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