dotnet-dynamic-query/PoweredSoft.DynamicQuery/Group.cs

14 lines
277 B
C#
Raw Normal View History

2018-10-17 22:14:21 -04:00
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; }
}
}