import SortingDirection from "../../../components/Table/definitions/SortingDirection";
interface QuerySortingDefinitionInterface {
    field: string;
    direction: SortingDirection;
}
export default QuerySortingDefinitionInterface;
