You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

25 lines
751 B

using System.ComponentModel;
using WTA.Shared.Domain;
namespace WTA.Shared.Application;
public class PaginationModel<TSearchModel, TListModel>
{
public PaginationModel()
{
}
[DefaultValue(1)]
public int PageIndex { get; set; } = 1;
[DefaultValue(20)]
public int PageSize { get; set; } = 20;
public int TotalCount { get; set; }
public string? OrderBy { get; set; } = $"{nameof(BaseEntity.Order)},{nameof(BaseEntity.CreatedOn)}";
public List<TListModel> Items { get; set; } = new List<TListModel>();
public bool QueryAll { get; set; }
public TSearchModel Query { get; set; } = Activator.CreateInstance<TSearchModel>();
public List<QueryFilter> Filters { get; set; } = new List<QueryFilter>();
}