11 lines
271 B
C#
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; }
|
|
}
|
|
}
|