import type { PagedAndSortedResultRequestDto } from '@abp/ng.core'; export interface DropDownItems { label?: string; value: number; } export interface FileDownloadDto { fileName?: string; fileContent?: string; } export interface PagingSortPatientResultDto extends PagedAndSortedResultRequestDto { search?: string; }