dotnet-dynamic-query/PoweredSoft.DynamicQuery/Aggregate.cs
2018-10-19 16:44:13 -05:00

14 lines
288 B
C#

using System;
using System.Collections.Generic;
using System.Text;
using PoweredSoft.DynamicQuery.Core;
namespace PoweredSoft.DynamicQuery
{
public class Aggregate : IAggregate
{
public string Path { get; set; }
public AggregateType Type { get; set; }
}
}