mirror of
https://github.com/immich-app/immich.git
synced 2026-03-23 01:47:55 -04:00
11 lines
287 B
TypeScript
11 lines
287 B
TypeScript
import { createZodDto } from 'nestjs-zod';
|
|
import * as z from 'zod';
|
|
|
|
const TrashResponseSchema = z
|
|
.object({
|
|
count: z.int().describe('Number of items in trash'),
|
|
})
|
|
.meta({ id: 'TrashResponseDto' });
|
|
|
|
export class TrashResponseDto extends createZodDto(TrashResponseSchema) {}
|