16 lines
329 B
TypeScript
16 lines
329 B
TypeScript
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;
|
|
}
|