Files
immich/server/src/dtos/trash.dto.ts
2024-09-18 09:57:52 -04:00

7 lines
136 B
TypeScript

import { ApiProperty } from '@nestjs/swagger';
export class TrashResponseDto {
@ApiProperty({ type: 'integer' })
count!: number;
}