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

17 lines
364 B
C#

using PoweredSoft.DynamicQuery;
using PoweredSoft.DynamicQuery.Core;
using System;
namespace PoweredSoft.CQRS.GraphQL.DynamicQuery
{
public class GraphQLSort
{
public string Path { get; set; }
public bool? Ascending { get; set; }
internal ISort ToSort()
{
return new Sort(Path, Ascending);
}
}
}