8 lines
165 B
C#
8 lines
165 B
C#
|
namespace PoweredSoft.DynamicQuery.Core
|
|||
|
{
|
|||
|
public interface IAggregate
|
|||
|
{
|
|||
|
string Path { get; set; }
|
|||
|
AggregateType Type { get; set; }
|
|||
|
}
|
|||
|
}
|