dotnet-dynamic-query/PoweredSoft.DynamicQuery.Core/IAggregate.cs
2018-10-17 18:30:55 -05:00

8 lines
165 B
C#

namespace PoweredSoft.DynamicQuery.Core
{
public interface IAggregate
{
string Path { get; set; }
AggregateType Type { get; set; }
}
}