dotnet-cqrs/PoweredSoft.AdvanceQuery.Abstractions/ISortableQuery.cs

11 lines
207 B
C#

using PoweredSoft.DynamicQuery.Core;
using System.Collections.Generic;
namespace PoweredSoft.AdvanceQuery.Abstractions
{
public interface ISortableQuery
{
List<ISort> GetSorts();
}
}