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

11 lines
271 B
C#

using System.Collections.Generic;
namespace PoweredSoft.CQRS.GraphQL.DynamicQuery
{
public class GraphQLDynamicQueryResult<TResult>
{
public List<TResult> Data { get; set; }
public List<GraphQLAggregateResult> Aggregates { get; set; }
}
}