using System.Linq; namespace AntDesign.TableModels { public interface ITableSortModel { public SortType SortType { get; } public int Priority { get; } public string FieldName { get; } IOrderedQueryable Sort(IQueryable source); internal void SetSortType(SortType sortType); internal void SetSortType(string sortType); internal void SwitchSortType(); internal SortType NextType(); } }