web-app-template/backend/app/app.Share.Common/SelectCriterion.cs

10 lines
257 B
C#
Raw Normal View History

2022-02-20 13:43:25 +01:00
namespace app.Share.Common
{
public class SelectCriterion
{
public int PageIndex { get; set; }
public int PageSize { get; set; }
public string SortDirection { get; set; }
public string SortColumn { get; set; }
}
}