using System; using System.Collections.Generic; using System.Text; namespace DllEapEntity.Dtos { public class PagedQuery { public int PageIndex { get; set; } = 1; public int PageSize { get; set; } = 20; public string SortField { get; set; } public string SortOrder { get; set; } public string Filter { get; set; } } }