pigallery2/src/common/entities/RandomQueryDTO.ts
2019-12-10 10:44:35 +01:00

14 lines
278 B
TypeScript

export enum OrientationType {
any = 0, portrait = 1, landscape = 2
}
export interface RandomQueryDTO {
directory?: string;
recursive?: boolean;
orientation?: OrientationType;
fromDate?: string;
toDate?: string;
minResolution?: number;
maxResolution?: number;
}