export interface JpaSort {
    key: string;
    direction: 'ASC' | 'DESC';
}
