dotnet-dynamic-linq/PoweredSoft.DynamicLinq/Fluent/QueryBuilderSort.cs

18 lines
393 B
C#
Raw Normal View History

2018-02-12 05:18:44 -05:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace PoweredSoft.DynamicLinq.Fluent
{
public class QueryBuilderSort
{
public string Path { get; set; }
2018-02-20 22:21:23 -05:00
public QuerySortDirection sortDirection { get; set; } = QuerySortDirection.Ascending;
2018-02-12 05:18:44 -05:00
public bool AppendSort { get; set; }
}
}