dotnet-dynamic-query/PoweredSoft.DynamicQuery.Core/ISort.cs

9 lines
158 B
C#
Raw Normal View History

2018-10-17 19:30:55 -04:00
namespace PoweredSoft.DynamicQuery.Core
{
public interface ISort
{
string Path { get; set; }
bool? Ascending { get; set; }
}
}