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

14 lines
288 B
C#
Raw Permalink Normal View History

2018-10-19 17:44:13 -04:00
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; }
}
}