10 lines
258 B
C#
10 lines
258 B
C#
namespace gswi.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; }
|
|
}
|
|
} |