1
0
mirror of https://github.com/xuthus83/pigallery2.git synced 2025-01-14 14:43:17 +08:00
pigallery2/src/common/entities/ConentWrapper.ts

11 lines
292 B
TypeScript
Raw Normal View History

2022-04-04 19:37:31 +02:00
import { ParentDirectoryDTO } from './DirectoryDTO';
import { SearchResultDTO } from './SearchResultDTO';
2017-07-19 20:47:09 +02:00
export class ContentWrapper {
2022-04-04 19:37:31 +02:00
constructor(
public directory: ParentDirectoryDTO = null,
public searchResult: SearchResultDTO = null,
public notModified?: boolean
) {}
}