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

14 lines
277 B
C#

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