dotnet-dynamic-linq/PoweredSoft.DynamicLinq/Fluent/OrderBy/OrderByPart.cs
2018-03-14 18:17:25 -05:00

18 lines
388 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace PoweredSoft.DynamicLinq.Fluent
{
public class OrderByPart
{
public string Path { get; set; }
public QuerySortDirection sortDirection { get; set; } = QuerySortDirection.Ascending;
public bool AppendSort { get; set; }
}
}