dotnet-dynamic-query/PoweredSoft.DynamicQuery/Sort.cs
2018-10-17 21:14:21 -05:00

14 lines
275 B
C#

using System;
using System.Collections.Generic;
using System.Text;
using PoweredSoft.DynamicQuery.Core;
namespace PoweredSoft.DynamicQuery
{
public class Sort : ISort
{
public string Path { get; set; }
public bool? Ascending { get; set; }
}
}