dotnet-dynamic-query/PoweredSoft.DynamicQuery.Core/IAggregate.cs

8 lines
165 B
C#
Raw Normal View History

2018-10-17 19:30:55 -04:00
namespace PoweredSoft.DynamicQuery.Core
{
public interface IAggregate
{
string Path { get; set; }
AggregateType Type { get; set; }
}
}