dotnet-dynamic-query/PoweredSoft.DynamicQuery.Core/ISort.cs
2018-10-17 18:30:55 -05:00

9 lines
158 B
C#

namespace PoweredSoft.DynamicQuery.Core
{
public interface ISort
{
string Path { get; set; }
bool? Ascending { get; set; }
}
}