dotnet-dynamic-linq/PoweredSoft.DynamicLinq/Fluent/Sort/QueryBuilderSort.cs
David Lebée 71b207ef78 seperate sort builder from filter builder.
makes logic more seperated.
2018-03-14 18:12:22 -05:00

18 lines
393 B
C#

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; }
public QuerySortDirection sortDirection { get; set; } = QuerySortDirection.Ascending;
public bool AppendSort { get; set; }
}
}