export interface ISorting {
  property: string;
  direction: 'asc' | 'desc';
}
