9 lines
158 B
C#
9 lines
158 B
C#
|
namespace PoweredSoft.DynamicQuery.Core
|
|||
|
{
|
|||
|
public interface ISort
|
|||
|
{
|
|||
|
string Path { get; set; }
|
|||
|
bool? Ascending { get; set; }
|
|||
|
}
|
|||
|
}
|