dotnet-dynamic-linq/PoweredSoft.DynamicLinq/Fluent/OrderBy/OrderByPart.cs

18 lines
386 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
{
2018-03-14 19:17:25 -04:00
public class OrderByPart
2018-02-12 05:18:44 -05:00
{
public string Path { get; set; }
public QueryOrderByDirection Direction { get; set; } = QueryOrderByDirection.Ascending;
2018-02-12 05:18:44 -05:00
public bool Append { get; set; }
2018-02-12 05:18:44 -05:00
}
}