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

19 lines
400 B
C#
Raw Normal View History

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