This repository has been archived on 2026-04-13. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
web-app-template/backend/login-counter/app.Share.Common/SelectCriterion.cs
T
2022-02-20 13:43:25 +01:00

10 lines
257 B
C#

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; }
}
}