dotnet-cqrs/PoweredSoft.CQRS.GraphQL.DynamicQuery/GraphQLAggregateResult.cs
2021-02-04 13:51:31 -05:00

12 lines
290 B
C#

using PoweredSoft.DynamicQuery.Core;
namespace PoweredSoft.CQRS.GraphQL.DynamicQuery
{
public class GraphQLAggregateResult
{
public string Path { get; set; }
public AggregateType Type { get; set; }
public GraphQLVariantResult Value { get; set; }
}
}