dotnet-cqrs/PoweredSoft.CQRS.GraphQL.DynamicQuery/GraphQLAggregateResult.cs

12 lines
290 B
C#
Raw Normal View History

2021-02-04 13:51:31 -05:00
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; }
}
}