1
0
mirror of https://github.com/xuthus83/pigallery2.git synced 2024-11-03 21:04:03 +08:00
pigallery2/common/entities/SearchResultDTO.ts

12 lines
307 B
TypeScript
Raw Normal View History

2016-12-28 03:55:51 +08:00
import {DirectoryDTO} from "./DirectoryDTO";
import {PhotoDTO} from "./PhotoDTO";
2016-05-16 17:03:11 +08:00
import {SearchTypes} from "./AutoCompleteItem";
2016-12-28 18:50:05 +08:00
export interface SearchResultDTO {
searchText: string;
searchType: SearchTypes;
directories: Array<DirectoryDTO>;
photos: Array<PhotoDTO>;
2017-07-26 03:36:28 +08:00
resultOverflow: boolean;
}