Initial commit
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
namespace PowderCoating.Application.DTOs.Common;
|
||||
|
||||
public class PagedResult<T>
|
||||
{
|
||||
public IEnumerable<T> Items { get; set; } = new List<T>();
|
||||
public int PageNumber { get; set; }
|
||||
public int PageSize { get; set; }
|
||||
public int TotalCount { get; set; }
|
||||
public int TotalPages => (int)Math.Ceiling(TotalCount / (double)PageSize);
|
||||
public bool HasPreviousPage => PageNumber > 1;
|
||||
public bool HasNextPage => PageNumber < TotalPages;
|
||||
public int StartIndex => (PageNumber - 1) * PageSize + 1;
|
||||
public int EndIndex => Math.Min(PageNumber * PageSize, TotalCount);
|
||||
public string? SortColumn { get; set; }
|
||||
public string SortDirection { get; set; } = "asc";
|
||||
public string? SearchTerm { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user